#abc205c. [abc205_c]POW

[abc205_c]POW

問題文

XXYY 回掛けたものを「XXYY 乗」といい、textpow(X,Y)\\text{pow}(X,Y) で表します。 例えば textpow(2,3)=2times2times2=8\\text{pow}(2,3)=2\\times 2\\times 2=8 です。

33 つの整数 A,B,CA,B,C が与えられるので、textpow(A,C)\\text{pow}(A,C)textpow(B,C)\\text{pow}(B,C) の大小を比較してください。

制約

  • \-109leqA,Bleq109\-10^9 \\leq A,B \\leq 10^9
  • 1leqCleq1091 \\leq C \\leq 10^9
  • 入力は全て整数

入力

入力は以下の形式で標準入力から与えられる。

AA BB CC

出力

textpow(A,C)<textpow(B,C)\\text{pow}(A,C)< \\text{pow}(B,C) なら < を、textpow(A,C)>textpow(B,C)\\text{pow}(A,C)>\\text{pow}(B,C) なら > を、textpow(A,C)=textpow(B,C)\\text{pow}(A,C)=\\text{pow}(B,C) なら = を出力せよ。


入力例 1

3 2 4

出力例 1

>

textpow(3,4)=81\\text{pow}(3,4)=81, textpow(2,4)=16\\text{pow}(2,4)=16 です。


入力例 2

-7 7 2

出力例 2

=

textpow(7,2)=49\\text{pow}(-7,2)=49, textpow(7,2)=49\\text{pow}(7,2)=49 です。


入力例 3

-8 6 3

出力例 3

<

textpow(8,3)=512\\text{pow}(-8,3)=-512, textpow(6,3)=216\\text{pow}(6,3)=216 です。