n, k, t = map(int, input()) if k * t >= abs(n): print('Yes') else: print('No')