a = input() b = input() c = input() x1 = a/b + 1 if a%b!=0 else 0 x2 = a/c + 1 if a%c!=0 else 0 if x1*2>=x2*3: print "YES" else: print "NO"