#Lutece0234. An Interesting Game

An Interesting Game

Migrated from Lutece 234 An Interesting Game

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Cloudiris and XiaoT like to play a game. The game is playing in the following way. First, XiaoT writes NN positive integers in a paper. These integers are labeled from 00 to N1N-1. Then, XiaoT gives Cloudiris some instructions. The instructions take one of the two forms: A>BA > B or A=BA = B. The first means that the AAth number is larger than the BBth number whereas the second means that the AAth number equals the BBth number. Since XiaoT is such an honest boy, all the instructions are guaranteed to be correct. And then, XiaoT will ask Cloudiris the relationship between some pairs of numbers. Depending on the instructions given by XiaoT, Cloudiris should respond with one of the following answers: >,=,<,>, =, <, or NN (which means the relationship is not clear). If Cloudiris gives a correct answer, she can get a strawberry and she really like strawberries. But when there are many numbers and even more relationships, the answer is difficult if not impossible to get. So Cloudiris turn to you for help. Now will you use your brilliant mind and help Cloudiris find the correct answer?

Input

The first line of the input contains a positive integer TT representing the number of test cases.T<30T<30

Each test case start with three integers N,M,N, M, and KK, representing the number of integers and relationship in the game and the number of questions XiaoT asked. $0 < N \leq 100, 0 \leq M \leq 10000, 0 < K \leq 10000$

Each of the following MM lines takes one of the two forms: A>BA > B or A=BA=B, whose meaning has been mentioned above. 0A<N,0B<N0 \leq A < N, 0 \leq B < N.

Then K lines follow. Each line contains two integers CC and DD which means a question is asked about the relationship between the CCth number and the Dth number. 0C<N,0D<N,C!=D0 \leq C < N, 0 \leq D < N, C != D.

Output

For each question, give an answer in one line. The answer should be: >,=,<,>, =, <, or NN.

Samples

2
3 2 2
0 = 1
2 > 1
2 0
1 0
5 4 3
2 = 3
4 > 1
0 > 1
0 > 2
0 4
1 2
3 0
>
=
N
N
<

Resources

第四届北京邮电大学程序设计竞赛决赛