#include <iostream>
using namespace std;

int main() {
	string h = "hiu";
	std::cout << h[h.size()] << ":" << h[-1] << std::endl; 
	return 0;
}