object Main { def main(args: Array[String]): Unit = { readInt() val a = readLine().split(' ').map(_.toInt).sum val v = readInt() println(a - v) } }