input = gets.split(" ")
if input[0].to_i != 1 
    puts "!="
elsif input[1].to_i < 0
    puts "!="
else
    puts "="
end