Stonefire# Python
x = float(input("Distance of the first day - "))
y = float(input("Total distance - "))
increase = 10 # (%)
coef = 1 + increase / 100
distance = x
cnt = 1
while distance < y:
distance *= coef
cnt += 1
health = 0. 05 * cnt
print("Total days -", cnt)
print(f"The level of health will increase by {health} %")
thump