for i in range(5): a = i+2 while i < 5: a = a + i i = i + 1 print(a)