# 標準入力から一行分を読み出し、文字列として格納する。 N = input() SUM = 0 for i in range(int(N)): SUM = SUM + int(input()) print(SUM)