Run ID:115425

提交时间:2025-03-30 13:46:45

a=int(input()) r=0 while a!=0: r=r+a%10 a=a//10 print(r)