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