#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int N, K, T; cin >> N >> K >> T; if ((abs(N) + K - 1) / K > T) { cout << "No" << '\n'; } else { cout << "Yes" << '\n'; } return 0; }