from math import ceil a, b, c = map(int, [input(), input(), input()]) if ceil(a / b) / 3 * 2 >= ceil(a / c): print("YES") else: print("NO")