line = input().rstrip().split(" ") N = int(line[0]) K = int(line[1]) T = int(line[2]) if N <= K*T: print("Yes") else: print("No")