{"raw_statement":[{"iden":"problem statement","content":"For a base number $X$, the product of multiplying it $Y$ times is called _$X$ to the $Y$\\-th power_ and represented as $\\text{pow}(X, Y)$. For example, we have $\\text{pow}(2,3)=2\\times 2\\times 2=8$.\nGiven three integers $A$, $B$, and $C$, compare $\\text{pow}(A,C)$ and $\\text{pow}(B,C)$ to determine which is greater."},{"iden":"constraints","content":"*   $-10^9 \\leq A,B \\leq 10^9$\n*   $1 \\leq C \\leq 10^9$\n*   All values in input are integers."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$A$ $B$ $C$"},{"iden":"sample input 1","content":"3 2 4"},{"iden":"sample output 1","content":"\\>\n\nWe have $\\text{pow}(3,4)=81$ and $\\text{pow}(2,4)=16$."},{"iden":"sample input 2","content":"\\-7 7 2"},{"iden":"sample output 2","content":"\\=\n\nWe have $\\text{pow}(-7,2)=49$ and $\\text{pow}(7,2)=49$."},{"iden":"sample input 3","content":"\\-8 6 3"},{"iden":"sample output 3","content":"<\n\nWe have $\\text{pow}(-8,3)=-512$ and $\\text{pow}(6,3)=216$."}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}