N, K, T = map(int, input().split())

if K * T >= abs(N):
    print('Yes')
else:
    print('No')