#include using namespace std; #define rep(i, n) for (int i = 0; i < (n); i++) typedef long long ll; typedef pair pii; typedef vector vll; typedef vector vi; typedef vector> vvi; typedef vector> vvll; const ll inf = 1e16; const ll md = 1000000007; int main() { int a,b,c; cin>>a>>b>>c; int nor=(a+b-1)/b; int cam=(a+c-1)/c; if(cam*3<=nor*2) puts("YES"); else puts("NO"); return 0; }