protocol Walkable {
    
    func walk()
}

 protocol Swimmable {
    func swim()

}

protocol Flyable {
    func fly()
}