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