What will be printed?

class Cat:
    def __init__(self, name, age, favorite_food):
        self.name = name
        self.age = age
        self.favorite_food = favorite_food

    def print_info():
        print(self.name, self.age, self.favorite_food)

cat = Cat("Bruno", 10, "curd")
cat.print_info()

__main__.Cat object at 0x03480910
Error message
Bruno 10 curd
Something else