#include<bits/stdc++.h>
using namespace std;
int main() {
	int n;
	cin>>n;
	string s;
	while(n--) getline(cin,s);
	cout<<58;
	return 0;
}