My CP Template
Template
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
typedef tree<int,null_type,less<int>,rb_tree_tag,
tree_order_statistics_node_update> indexed_set; //less_equal for multi-set
#define endl '\n'
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
ll t=1;
//cin>>t;
for(ll T=1;T<=t;T++){
//code here
}
return 0;
}