input = gets.split(" ") input.map!{|a| a.to_i} x = input[0] y = input[1] z = y - x if z > 0 puts "+#{z}" else puts z end# your code goes here