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