#include using namespace std; using ll = long long; using ull = unsigned long long; #define REP(i, m, n) for (ll(i) = (ll)(m); i < (ll)(n); ++i) #define REP2(i, m, n) for (ll(i) = (ll)(n)-1; i >= (ll)(m); --i) #define rep(i, n) REP(i, 0, n) #define rep2(i, n) REP2(i, 0, n) #define all(hoge) (hoge).begin(), (hoge).end() #define en '\n' using Edge = pair; using Graph = vector>; typedef vector vl; typedef vector> vvl; typedef vector>> vvvl; typedef vector vs; typedef vector> vvs; typedef pair pll; constexpr long long INF = 1LL << 60; constexpr int INF_INT = 1 << 25; const int MOD = 1000000007; // constexpr long long MOD = (ll)1e9 + 7; // constexpr long long MOD = 998244353LL; using ld = long double; static const ld pi = 3.141592653589793L; template inline void print(T x) { cout << x << '\n'; } template bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; } template bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; } // ~~~~~~~~~~~~~~memo~~~~~~~~~~~~~~ // for (int i = 0; i < n; ++i) // int型の2次元配列(h×w要素の)の宣言 // vector> data(h, vector(w)); // rotate(s.begin(), s.begin() + 1, s.end()); // sort(all(a),greater()); // s.substr(0,2) 先頭から2文字切り出す // for (auto it = mp.rbegin();it != mp.rend(); ++it) // vector>> dp(n + 1, vector>(w + 1, vector(k+1, 0))); int main() { ios::sync_with_stdio(false); cin.tie(0); ll n,k,t; cin >> n >> k >> t; if (abs(n) <= t*k) { print("Yes"); } else { print("No"); } return 0; }