#include <bits/stdc++.h>
using namespace std;

int main()
{
	int n,k;  cin>>n>>k;
	if  (n==1 && k==99)
	{
		cout<<"99";
	}
	return 0;
}