Run ID:144300

提交时间:2026-01-21 14:05:30

n,x,y=map(int,input().split()) if y%x==0: z=y//x else: z=y//x+1 r=max(0,n-z) print(r)