n, x, y = eval(input(">>>")) res = n - (y // x + (1 if y % x > 0 else 0)) if res <= 0: print("剩0个苹果!") else: print(f"剩{res}个苹果!")