#include #include #include #include #include #include #include #include using namespace std; typedef long long int ll; typedef pair Pii; const ll mod = 1000000007; int main() { cin.tie(0); ios::sync_with_stdio(false); ll n, k, t; cin >> n >> k >> t; ll reachable = k * t; if (abs(n) <= reachable) cout << "Yes" << endl; else cout << "No" << endl; return 0; }