n =list(map(int,input().split()))
res = 0
for i in n:
if i == 0:
pass
res += i*i
print(res%10)
n =list(map(int,input().split()))
res = 0
res += i*i
print(res%10)
'문제풀이 > 백준(Boj) 문제풀이' 카테고리의 다른 글
[백준][투포인터] - 2003. 수들의 합 2 (0) | 2022.08.14 |
---|---|
[백준][BFS] - 14502. 연구소 (0) | 2022.08.04 |
[백준][구현] - 2743. 단어 길이 재기 (0) | 2022.08.04 |
[백준][파이썬] - 1764. 듣보잡(파이썬/python) (0) | 2022.07.20 |
[백준][파이썬] - 1269. 대칭 차집합(파이썬/python) (0) | 2022.07.20 |