// https://yukicoder.me/problems/no/1088 fun main(args: Array){ var (a,b)=readLine()!!.split(" ").map(String::toInt) print(a+b) }