#1223 #標準入力 N, K, T = map(int, input().split()) #判定 if K*T >= abs(N): print('Yes') else: print('No')