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