a, b, c = $stdin.read.split.map(&:to_i) x, r = a.divmod(b); x += 1 if r > 0 y, r = a.divmod(c); y += 1 if r > 0 puts x * 2 >= y * 3 ? "YES" : "NO"