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