2 lines
61 B
Python
2 lines
61 B
Python
print(sum([i ** 2 for i in map(int, input().split())]) % 10)
|
print(sum([i ** 2 for i in map(int, input().split())]) % 10)
|