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