Run ID:129194

提交时间:2025-08-22 15:28:09

n,x,y=input().split() n = int(n) x = int(x) y = int(y) n = n - y//x -bool(y%x) if n < 0: n = 0 print(n)