n, x, y = map(int, input().split()) if y % x == 0: a = n - y // x else: a = n - (y // x + 1) print(a)