Run ID:112750

提交时间:2025-03-11 19:01:05

n, x, y = map(int, input().split()) eaten = (y + x - 1) // x eaten = min(eaten, n) print(n - eaten)