#include<bits/stdc++.h> using namespace std; typedef long long LL; template<typename T> void print(vector<T> &arr){ for(auto &a : arr){ cout << a << " "; } cout << endl; } int main() { //freopen("in1.txt", "r", stdin)...