Guessing Game
Jaehyun has two lists of integers, namely a_1, ..., a_N and b_1, ..., b_M . Jeffrey wants to know what these numbers are, but Jaehyun won’t tell him the numbers directly. So, Jeffrey asks Jaehyun a series of questions of the form "How big is a_i+b_j ?" Jaehyun won’t even tell him that, though; instead, he answers either "It’s at least c," or "It’s at most c." (Right, Jaehyun simply doesn’t want to give his numbers for whatever reason.) After getting Jaehyun’s responses, Jeffrey tries to guess the numbers, but he cannot figure them out no matter how hard he tries. He starts to wonder if Jaehyun has lied while answering some of the questions. Write a program to hep Jeffrey.
Input
The input consists of multiple test cases. Each test case begins with a line containing three positive integers N, M, and Q, which denote the lengths of the Jaehyun’s lists and the number of questions that Jeffrey asked. These numbers satisfy 2 ≤ N + M ≤ 1000 and 1 ≤ Q ≤ 10000. Each of the next Q lines is of the form i j <= c or i j >= c. The former represents a_i + b_j ≤ _c, and the latter represents a_i + b_j ≥ c. It is guaranteed that −1000 ≤ c ≤ 1000. The input terminates with a line with N = M = Q = 0.
Output
For each test case, print a single line that contains "Possible" if there exist integers a_1, ..., a_N and b_1, ..., b_M that are consistent with Jaehyun’s answers, or "Impossible" if it can be proven that Jaehyun has definitely lied (quotes added for clarity).