Run ID:88642

提交时间:2024-08-19 16:40:37

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