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