codeflash-internal/experiments/pie_test_set/p02694.py

18 lines
224 B
Python

def problem_p02694(input_data):
x = int(eval(input_data))
t = 100
count = 0
while True:
if t >= x:
return count
exit()
t = int(t + t * 0.01)
count += 1