n,k,t = map(int,input().split()) if k * t >= n: print("Yes") else: print("No")