Run ID:115422
提交时间:2025-03-30 13:45:36
a = int(input()) res =0 while a>0: res = res + a%10 a = a//10 print(res)