Run ID:115424
提交时间:2025-03-30 13:46:37
a = int(input()) res = 0 while a!=0: res = res + a%10 a = a//10 print(res)