Problem Statement
For a base number X, the product of multiplying it Y times is called X to the Y-th power and represented as textpow(X,Y). For example, we have textpow(2,3)=2times2times2=8.
Given three integers A, B, and C, compare textpow(A,C) and textpow(B,C) to determine which is greater.
Constraints
- \-109leqA,Bleq109
- 1leqCleq109
- All values in input are integers.
Input is given from Standard Input in the following format:
A B C
Output
If textpow(A,C)<textpow(B,C), print <
; if textpow(A,C)>textpow(B,C), print >
; if textpow(A,C)=textpow(B,C), print =
.
3 2 4
Sample Output 1
>
We have textpow(3,4)=81 and textpow(2,4)=16.
-7 7 2
Sample Output 2
=
We have textpow(−7,2)=49 and textpow(7,2)=49.
-8 6 3
Sample Output 3
<
We have textpow(−8,3)=−512 and textpow(6,3)=216.