Run ID:115419
提交时间:2025-03-30 13:43:58
a=int(input()) r=0 while True: r=r+a%10 a=a//10 if a==0: break print(r)