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