Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
91910 乔仲熠 05求百位数的每一位数之和 Python3 Accepted 42 MS 3772 KB 95 2024-09-25 19:22:44

Tests(10/10):


Code:

e=input().split() a=int(e[0]) b=a%10 c=a//10%10 d=a//100%10 i=a//1000 print(b+c+d,sep='')