Run ID:104701
提交时间:2025-01-08 20:12:14
n, x, y = map(int, input().split()) if n <= y: remaining_apples = 0 else: remaining_apples = n - y print(remaining_apples)