Run ID:88652

提交时间:2024-08-19 16:58:30

n,x,y=input().split() n,x,y=int(n),int(x),int(y) res=n-y//x if y%x==0 else n-y//x-1 print(res)