t40.py 86 B

123456
  1. a = 4
  2. def test(z):
  3. for i in range(0,a):
  4. z += i
  5. return z
  6. print test(1)