#B. [ABC205C] POW

    Type: FileIO (pow) 1000ms 256MiB

[ABC205C] POW

You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.

[ABC205C] POW

题面翻译

题目简述

给定三个整数 A,B,CA, B, C

AC>BCA^C > B^C , 输出 >

AC<BCA^C < B^C , 输出 <

AC=BCA^C = B^C , 输出 =

题目描述

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

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

输入格式

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

A A B B C C

输出格式

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

样例 #1

样例输入 #1

3 2 4

样例输出 #1

>

样例 #2

样例输入 #2

-7 7 2

样例输出 #2

=

样例 #3

样例输入 #3

-8 6 3

样例输出 #3

<

提示

制約

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

Sample Explanation 1

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

Sample Explanation 2

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

Sample Explanation 3

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

赛前模拟1

Not Attended
Status
Done
Rule
OI
Problem
3
Start at
2024-10-23 17:00
End at
2024-11-1 11:00
Duration
1.5 hour(s)
Host
Partic.
11