Write a program which reads an integer and prints sum of its digits.
The input consists of multiple datasets. For each dataset, an integer x is given in a line. The number of digits in x does not exceed 1000.
The input ends with a line including single zero. Your program should not process for this terminal symbol.
For each dataset, print the sum of digits in x.
123 55 1000 0
6 10 1