Run ID:144374

提交时间:2026-01-21 21:00:45

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