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