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