A = int(input())
B = int(input())
C = int(input())
x = -(-A//B)

y = int(x/3*2)


if C*y >= A:
    print("YES")
else:
    print("NO")