Run ID:113228

提交时间:2025-03-15 14:40:06

n,x,y=input().split() n=int(n) x=int(x) y=int(y) a=y//x b=y%x s=n-a if b>0: s=s-1 if s<0: s=0 print(s)