#include<iostream>
#include<cmath>

int main() {
	double a, b, c;

	std::cin >> a >> b >> c;

	int d = ceil(a / c);
	int e = ceil(a / b);

	if (floor(e * 2.0 / 3) >= d)
		std::cout << "YES" << std::endl;
	else
		std::cout << "NO" << std::endl;

	return 0;
}