# No.1223 I hate Golf # https://yukicoder.me/problems/no/1223 n, k, t = map(int, input().split()) if t * k >= abs(n): print("Yes") else: print("No")