n,x,y = input().split() n = float(n) x = float(x) y = float(y) s = n-y//x if y % x != 0: s -= 1 res = int(s) if s > 0: print(res) else: print(0)