let inpt = readLine()!.split(separator: " ").map({Int($0)!}) let ans = inpt.reduce(0, {$0 - (-1 * $1)}) print(ans)