4 lines
76 B
Python
4 lines
76 B
Python
arr = set()
|
|
for i in range(10):
|
|
arr.add(int(input())%42)
|
|
print(len(arr)) |