#include #include #include #define INF 1000000000 using namespace std; // #define int long long signed main(){ int a,b,c; cin >> a >> b >> c; int S1 = (a+b-1)/b; int S2 = (a+c-1)/c; if(S2*3 <= S1*2){ cout << "YES" << endl; return 0; } cout << "NO" << endl; }