a, b = gets.chomp.split.map &:to_i if a == b puts 0 else if a < b puts "+#{b - a}" else puts "-#{a - b}" end end