N,K,T = map(int,input().split()) N = abs(N) if K*T >= N: print("Yes") else: print("No")