import sys input=lambda: sys.stdin.readline().rstrip() n,k,t=map(int,input().split()) print("Yes" if t*k>=abs(n) else "No")