Sum of digits

Add N digits given as a single unspaced line and print their sum.

Easy1ImplementationStringNo attempts yetTime limit1sMemory limit256 MB

Problem

You are given NN single-digit numbers written in a row with no spaces between them. Write a program that prints their sum.

Input

The first line contains the count of digits NN (1N1001 \le N \le 100).

The second line contains the NN digits with no spaces. Each digit is between 0 and 9, and the first digit can be 0.

Output

Print the sum of the NN given digits on the first line.