p, q = gets.chomp.split.map(&:to_f) p1 = (1.0 - p) * q p2 = p * (1.0 - q) * q puts (p1 < p2 ? 'YES' : 'NO')