Run ID:132330

提交时间:2025-10-08 08:37:57

n = int(input()) a = n//100 #百 b = n//10%10 #十 c = n%10 #个 print(a+b+c)