blob: 86158770a31ddfe288645f525a97d44cd8044834 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
N = int(input())
correct = 0
student_answers = []
for i in range(N):
student_answers.append(input())
for i in student_answers:
if input() == i:
correct += 1
print(correct)
|