import math

a = int(input())
b = int(input())
c = int(input())

ab = math.ceil(a / b) * 2 / 3

if math.ceil(a / c) <= ab:
    print("YES")
else:
    print("NO")