N = int(input("Сколько будет элементов в последовательности? "))
counter = 0
for i in range(N):
x = int(input())
if x % 3 == 0:
counter += 1
print(counter)
N = int(input("Сколько будет элементов в последовательности? "))
counter = 0
for i in range(N):
x = int(input())
if x % 3 == 0:
counter += 1
print(counter)