import math a,b,c = input(),input(),input() d = math.ceil(a * 1.0 / b) e = math.ceil(a * 1.0 / c) if d * 2.0 / 3 >= e: print "YES" else: print "NO"