# 9(18) РТ

 avatar
user_8840555
python
2 years ago
417 B
4
Indexable
f = open(r'C:\Users\SnowDrit\Downloads\9\Новый текстовый документ.txt')
c = 0
for s in f:
    a = list(map(int, s.split()))
    if len(set(a)) != 6:
        povt = []
        np = []
        for x in a:
            if a.count(x) == 1:
                np.append(x)
            else:
                np.append(x)
        if sum(np) % 2 != 0:
            c += 1
print(c)
# 9(18) РТ
Editor is loading...