''' Created on 2020/09/11 @author: harurun ''' def yn(t): if t:print("yes") else:print("no") return def YN(t): if t:print("YES") else:print("NO") return def Yn(t): if t:print("Yes") else:print("No") return def main(): import sys pin=sys.stdin.readline pout=sys.stdout.write perr=sys.stderr.write N,K,T=map(int,pin().split()) Yn(T*K>=abs(N)) return main()