Что выведет код?

class A:

def __repr__(self):

return "repr"

def __str__(self):

return "str"

a = A()

print(a, repr(a), str(a))