// yukicoder: No.218 経験値1.5倍 // 2019.6.23 bal4u #include int main() { int a, b, c, x; scanf("%d%d%d", &a, &b, &c); x = ((a-1)/b + 1) * 2; puts(x >= 3*((a-1)/c+1)? "YES": "NO"); return 0; }