Помогите с задачей на python
Ответ:
Объяснение:
def f(x):
return int(str(x).split(".")[0])
x = int(input())
p = int(input())
y = int(input())
n = 0
while(x < y):
x += f(float(p)/100 * x)
n += 1
print(n)