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

int
main()
{
	std::vector<std::string> vs{
		"yes,",
		"you",
		"can"
	};
	
	for (auto&& w : vs)
	{
		std::cout << w << ' ';
	}

	return 0;
}