r = int(input("Введіть кількість рядків: "))
mas = []
for i in range(r):
x = [int(j) for j in input().split()]
mas.append(x)
for i in mas:
if len(i) > 6:
print(i[0])
Введіть кількість рядків: 3
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
1
8
15
Process finished with exit code 0