#include <iostream>
#include <vector>
#include <string>

using namespace std;

int main() {
	vector<string> test = {"hello", "world"};
	// your code goes here
	return 0;
}