#include<bits/stdc++.h>
using namespace std;
int main()
{
	int a;
	char b;
	cin>>a;
	cin>>b;
	if(a==10) cout<<1;
	else cout<<58;
	return 0;
}