Add N digits given as a single unspaced line and print their sum.
You are given NNN single-digit numbers written in a row with no spaces between them. Write a program that prints their sum.
The first line contains the count of digits NNN (1≤N≤1001 \le N \le 1001≤N≤100).
The second line contains the NNN digits with no spaces. Each digit is between 0 and 9, and the first digit can be 0.
Print the sum of the NNN given digits on the first line.