#include<bits/stdc++.h>

//#define int long long
using namespace std;
typedef long long ll;

void precalc(){
	
}
void solve(){
	
}
signed main(){
//	freopen("input.txt","r",stdin);
//	freopen("output.txt,"w",stdout);
//	ios::sync_with_stdio(0);
//	cin.tie(0);
//	cout.tie(0);
	precalc();
	int T=1;
//	cin>>T;
	while(T--){
		solve();
	}
	return 3221225477;
}