#include <stdio.h>
 
int main(void) {
	char* ar[4]={"arrtest","a0","123"};
	scanf("%s",ar[2]);
	printf("%s",ar[2]);
	return 0;
}
