#include using namespace std; int main(){ double a,b,c; cin>>a>>b>>c; b=ceil(a/b)*2/3; c=ceil(a/c); puts(c<=b?"YES":"NO"); return 0; }