Run ID:144299
提交时间:2026-01-21 13:56:45
n,x,y=map(int,input().split()) z=y//x if y%x==0: m=n-z print(m) else: m=n-z-1 print(m)