def add_one(x): return x + 1 i = 0 while i < 60000: i = add_one(i) print(i)