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