void printReverse(string s)
{
	int n = s.length();
	if (s.length() != 0)
	{
		printReverse(s.substr(1,n - 1));
		cout << s[0];
	}
}

