Problem1487--双重循环-分离求和

1487: 双重循环-分离求和

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 227  Solved: 174
[Status] [Submit] [Creator:]

Description

给定一个非负整数 n,反复将各个位上的数字相加,直到结果为一位数。返回这个结果。

Input

输入仅一个数n(1<=n<=10000)

Output

输出仅一个数,为最终计算的结果。

Sample Input Copy

38

Sample Output Copy

2

HINT

样例解释:
各位相加的过程为:
38 --> 3 + 8 --> 11
11 --> 1 + 1 --> 2
由于 2 是一位数,所以返回 2。

Source/Category

 提高C