#include <iostream>
using namespace std;


int main()
{
	int n;
	cin >> n;
	int a[n];
	int werewolves_alive = 0;
	for(int i = 0; i < n; ++i)
	{
		cin >> a[i];
		if (a[i] == -1)
			werewolves_alive += 1;
	}

	bool isWrong = false;
	int dead;
	while(cin >> dead)
	{
		if (dead == 0)
			break;

		if (a[dead-1] == 2)
		{
			isWrong = true;
		}
		if (a[dead-1] == -1)
		{
			werewolves_alive -= 1;
		}
		a[dead-1] = 2;
	}


	if (isWrong)
		cout << "Wrong" << endl;
	else if (werewolves_alive > 0)
		cout << "Werewolves" << endl;
	else
		cout << "Townsfolk" << endl;


	return 0;
}