class YobaIterator:
	def __next__(self):
		return 42

iterator = YobaIterator()

print(next(iterator))
print(next(iterator))
print(next(iterator))