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