728x90
#include <iostream>
#include <string>
using namespace std;

int main()
{
	string word;
	cin >> word;
	for (const auto str : word)
		cout << "'" << str << "'" << endl;
	return 0;
}
728x90