#include #include using namespace std; int main(){ int n,k,t; cin >> n >> k >> t; if(abs(n/k) < t) cout << "Yes" << endl; else cout << "No" << endl; }