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