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