13 lines
146 B
C++
13 lines
146 B
C++
|
#include<bits/stdc++.h>
|
||
|
using namespace std;
|
||
|
|
||
|
int n,m;
|
||
|
|
||
|
int main(){
|
||
|
cin.sync_with_stdio(false);
|
||
|
cin.tie(0);
|
||
|
|
||
|
vector<int> v(n);
|
||
|
|
||
|
|
||
|
}
|