#include using namespace std; typedef long long ll; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); ll n,k,t; cin >> n >> k >> t; if((abs(n)+k-1)/k<=t){ printf("Yes\n"); } else{ printf("No\n"); } }