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