#include using namespace std; int main() { long N, K, T; cin >> N >> K >> T; cout << ((K * T >= abs(N)) ? "Yes" : "No") << "\n"; }