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