class C: f = 50 a, b = 1, 1 for _ in range(10): a, b = b, a + b print(a, b) def __init__(self, a, b): print(self) self.a = a self.b = b