#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define mp make_pair #define pb push_back #define all(x) (x).begin(),(x).end() #define rep(i,n) for(int i=0;i<(n);i++) using namespace std; typedef long long ll; typedef unsigned long long ull; typedef vector vb; typedef vector vi; typedef vector vvb; typedef vector vvi; typedef pair pii; const int INF=1<<29; const double EPS=1e-9; const int dx[]={1,0,-1,0,1,1,-1,-1},dy[]={0,-1,0,1,1,-1,-1,1}; int main() { int a, b, c; cin >> a >> b >> c; int now; if (a % b == 0) { now = a / b; } else { now = a / b + 1; } now = now * 2 / 3; if (now * c >= a) { cout << "YES" << endl; } else { cout << "NO" << endl; } return 0; }