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