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