a = input()
b = input()
c = input()

x = a/b + (a % b > 0)

y = a/c + (a % c > 0)


if x >= (y * 3) / 2 + ((y * 3) % 2 > 0):
  print "YES"
else:
  print"NO"