Run ID:144376
提交时间:2026-01-21 21:08:14
n,x,y =map(int,input().split()) m = y//x m = int(m) if y%x==0: m = m else: m=m+1 r = max(n-m,0) print(r)