line = input().rstrip().split(" ") N = int(line[0]) K = int(line[1]) T = int(line[2]) if abs(N) <= abs(K*T): print("Yes") else: print("No")