#include <stdio.h>
#include <string.h>

main(){
	char str[10];
	strcpy(str,"Wraith");
	printf("%s\n", str);
	return 0;
}
