Run ID:94157

提交时间:2024-10-19 20:07:26

s = input().split() s = list(map(int, s)) n = s[0] x = s[1] y = s[2] e = n- y/x + y%x if e < 0: print(0) else: print(int(e))