#include #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); long long N, K, T; cin >> N >> K >> T; N = abs(N); cout << (K * T >= N? "Yes" : "No") << endl; return 0; }