n = gets.to_i input = gets.split.map(&:to_i) sum = 0 for i in 0..n sum += input[i].to_i end puts sum