fun main() { val n = readLine()!!.toInt() val a = readLine()!!.split(" ").map{it.toInt()} println(a.sum()) }