#include <iostream>
#include <vector>

int main() {
	
	std::vector<std::string> cmds = {"hi", "hello", "test"};
	
	for (std::string command : cmds) 
	{
		std::cout << command << std::endl;
	}
	
	// your code goes here
	return 0;
}