Run ID:88643

提交时间:2024-08-19 16:46:11

n = float(input()) x = float(input()) y = float(input()) s = n-y//x if y % x != 0: s -= 1 res = int(s) if s > 0: print(res) else: print(0)