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