Run ID:144343

提交时间:2026-01-21 19:40:39

n,x,y=map(int,input().split()) a=y//x b=y%x t=n-a if b==0: print(t) elif t>0: print(t-1) else: print("0")