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