#include <iostream>
using namespace std;

int main() {
	static int i=0;
	for(++i;++i<=2;++i)
   	{
    	  printf("4rth :%d\n",i);
   	}
	return 0;
}