#include #include using namespace std; int main() { int N, K, T; cin >> N >> K >> T; if (K * T >= abs(N)) cout << "Yes" << endl; else cout << "No"; }