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