let inpt = readLine()!.split(separator: " ").map{Int($0)!} let ans = inpt[1] - inpt[0] if(ans > 0) { print("+\(ans)") } else { print(ans) }