a, b = gets.split.map(&:to_i) pre = a-b == 0 ? "" : a - b < 0 ? "+" : "-" puts "#{pre}#{b-a}"