n,x,y = input().split() n = int(n) x = int(x) y = int(y) s = (y + x - 1) // x r = n - s if r < 0: r = 0 print(r)