protocol Printer {
   var name: String { get set }
   func printdescription()
}
protocol Highlight {
   func highlightName()
}

struct Employees: Printer, Highlight {
   var name: String
   var age: Int
    
   func printdescription() {
      print("Description: \(name) \(age)")
   }
   func highlightName() {
      print(name.uppercased())
   }
}
let employee1 = Employees(name: "John", age: 32)
employee1.printdescription()  // "Description: John 32"
employee1.highlightName()  // "JOHN"