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