fun main(){ val n = readLine()!!.toInt() val list = List(n) { readLine()!!.toLong() } println(list.sum()) }