Run ID:144381

提交时间:2026-01-21 21:41:10

n,x,y=input().split() n=int(n) x=int(x) y=int(y) while y>0: n=n-1 y=y-x print(n)