Accept a five digit number as input and print the sum of its digits as output.
Input
A single line containing a number with exactly five digits.
Output
A single line: the sum of the five digits.
Example
Input:
12345
Output:
15
Write a complete program: read the input with input() and print the result with print().
Input
12345
Output
15