#include using namespace std; int main(){ double a,b,c; cin >> a >> b >> c; cout << (ceil(a/c)*3<=ceil(a/b)*2?"YES":"NO") << endl; return 0; }