n = int(input()) A = list(map(int, input().split())) mod = 10 ** 9 + 7 print(sum(A) % mod)