Exponentiation
시간 제한: 3000ms메모리 제한: 1024MB출처: NWERC 2023BOJ 30902
문제
In her spare time, Zoe develops an online calculator. Unfortunately, the calculator was targeted by a denial-of-service attack last week. The attacker created a lot of integer variables, exponentiated them with each other, and tried to do a bunch of comparisons. The huge integers were too much for the server to handle, so it crashed. Before Zoe fixes the issue, she decides to actually perform the calculations that the attacker requested.
There are integer variables . At the start, each variable is set to . You have to perform instructions of the following two types:
- Operations, of the form "
!", where . This means that gets set to . - Queries, of the form "
?", where . This means that you should print '>' if is greater than , '=' if is equal to , and '<' if is smaller than .
Consider the first sample. After the operations, the values of the variables are:
입력
The input consists of:
- One line with two integers and (, ), the number of variables and the number of instructions.
- lines, each containing a character (either '
!' or '?') and two integers and (, ), describing the instructions.
출력
For every query in the input, output its answer.
예제
예제 1
입력
4 8 ! 1 4 ! 2 1 ! 4 3 ! 1 4 ! 2 3 ? 3 4 ? 2 4 ? 2 1
출력
< > =
예제 2
입력
4 9 ! 2 4 ! 1 2 ? 3 1 ? 1 2 ! 2 3 ? 1 2 ! 1 3 ! 3 2 ? 1 3
출력
< > > <
코드를 제출하려면 로그인하세요.