practivceAlgorithm/백준
[백준][Python] 2475 검증수
findTheValue
2021. 10. 23. 22:09
제곱 합의 나머지
print(sum(list(map(lambda x: int(x)**2, input().split()))) % 10)