본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬]23037번 5의 수난

by 현장 2021. 11. 6.

-코드

num = input()
r = 0
for i in num:
    r += int(i) ** 5
print(r)