a, b, c = [int(input()) for _ in range(3)] n = (a + b - 1) // b n_c = (a + c - 1) // c yes = (3 * n_c <= 2 * n) print('YES' if yes else 'NO')