A = int(input()) B = int(input()) C = int(input()) x = -(-A//B) y = x//3*2 if C*y >= A: print("YES") else: print("NO")