#include <iostream>
using namespace std;

int main() {
	std::string a = "test";
	for( auto &c : a )
	{
		cout << c << '\n';
	}
	return 0;
}