s = list(map(int, input().split())) def q1223(a,b,c): d = b * c if d >= abs(a) : str = 'Yes' else: str = 'No' return str print(q1223(s[0],s[1],s[2]))