a = int(input()) b = int(input()) c = int(input()) d = a//b + (a % b != 0) e = int((2/3)*d) if e * c >= a : print("YES") else : print("NO")