You are on page 1of 1

#include <iostream>

#include <string.h>
#include <vector>
#define Rep(i, a, b)\
for (int i = (int)a; i < (int)b; i++)

using namespace std;

int n;

const int maxN = 100000;

int main() {
cin >> n;
string str;
while(n--) {
cin >> str;

return 0;
}

You might also like