#include <bits/stdc++.h>
using namespace std;
struct cww{cww(){ios::sync_with_stdio(false);cin.tie(0);}}star;
int main()
{
	// A->必要な経験値 B->素材1つMAX値 C->camp中MAX値
	int A, B, C;
	cin >> A >> B >> C;
	cout << ( ( A + B - 1 ) / B * 2 / 3 < ( A + C - 1 ) / C ? "NO" : "YES" ) << endl;
	return 0;
}