Submission

Status:

PPPPPPPPPP

Subtask/Task Score:

100/100

Score: 100

User: spiwips

Problemset: ผลรวมของเลขหลัก

Language: python

Time: 0.013 second

Submitted On: 2025-09-30 22:40:06

inp = input()
ans = 0
for i in inp:
    ans += int(i)
print(ans)