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

class A:

def __iter__(self):

yield from range(10)

a = A()

print(5 in a, 20 in a)