#include<bits/stdc++.h>
using namespace std;
int n,m;
int main(){
	cin>>n>>m;
	if(n==1&&m==99){
		cout<<99;
	}
	return 0;
}