N, K, T = map(int, input().split()) if T - abs(N) / K < 0: print("No") else: print("Yes")