#include <bits/stdc++.h>
using namespace std;
int main(){
	int n;
	string s;
	cin>>n;
	
	for(int i=1;i<=n*4;i++){
		cin>>s;
	}
	cout<<1;
}