1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include <iostream>
#include <algorithm>

using namespace std;

void test(){
	int n, m;
	cin >> n >> m;

	//set<int> bajtek, bitek;
	int* bajtek = new int[n];
	int* bitek = new int[n];

	for(int i=0;i<n;i++){
		bajtek[i] = 0;
		bitek[i] = 0;
	}

	int a,b;
	char w;

	for(int i=0;i<m;i++){
		cin >> a >> w >> b;
		if(w == '>'){
			bajtek[a-1] = 1;
		}
		else{
			bitek[b-1] = 1;
		}
	}

	int s1, s2;
	s1=s2=0;

	for(int i=0;i<n;i++){
		s1 += bajtek[i];
		s2 += bitek[i];
	}

	//cout << n << ", " << m << ": " << s1 << " " << s2 << endl;

	if(s1 > s2 && s1 == n){
		cout << "WYGRANA";
	}
	else if(s2 > s1 && s2 == n){
		cout << "PRZEGRANA";
	}
	else{
		cout << "REMIS";
	}

	cout << endl;

}

int main(){
	ios_base::sync_with_stdio(0);

	int t;

	cin >> t;

	for(int i=0; i<t; i++){
		test();
	}
	
	return 0;
}