a = int(input()) b = int(input()) c = int(input()) bb = (a + b - 1) // b cc = (a + c - 1) // c if bb * 2 >= cc * 3: print("YES") else: print("NO")