Run ID:131950
提交时间:2025-10-02 09:50:55
n = int(input()) a = n // 100 b = n // 10 % 10 c = n % 10 print(a+b+c)