import math, sequtils, strutils var n: int = stdin.readline.parseInt a: seq[int] = stdin.readline.split.map(parseInt) ans: int = sum(a) echo ans