19 lines
208 B
C++
19 lines
208 B
C++
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
|
|
int main(){
|
|
ios::sync_with_stdio(0);
|
|
cin.tie(0);
|
|
|
|
int n, k;
|
|
|
|
cin >> n >> k;
|
|
|
|
vector<map<char, int>> s;
|
|
|
|
cout << flush;
|
|
|
|
return 0;
|
|
} |