백준 23037 5의 수난
다섯자리 양의 정수 n을 입력받아 각 자릿수에 다섯제곱한 합을 출력
print(sum(map(lambda x: int(x)**5, list(input()))))
input()