#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(n%k==0&&n/k<=t){ printf("Yes\n"); } else{ printf("No\n"); } }