{"problem":{"name":"POW","description":{"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$. G","description_type":"Markdown"},"platform":"AtCoder","limit":{"time_limit":2000,"memory_limit":262144},"difficulty":"None","is_remote":true,"is_sync":true,"sync_url":null,"sign":"abc205_c"},"statements":[{"statement_type":"Markdown","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.\n\n## Constraints\n\n*   $-10^9 \\leq A,B \\leq 10^9$\n*   $1 \\leq C \\leq 10^9$\n*   All values in input are integers.\n\n## Input\n\nInput is given from Standard Input in the following format:\n\n$A$ $B$ $C$\n\n[samples]","is_translate":false,"language":"English"}],"meta":{"iden":"abc205_c","tags":[],"sample_group":[["3 2 4","\\>\n\nWe have $\\text{pow}(3,4)=81$ and $\\text{pow}(2,4)=16$."],["\\-7 7 2","\\=\n\nWe have $\\text{pow}(-7,2)=49$ and $\\text{pow}(7,2)=49$."],["\\-8 6 3","<\n\nWe have $\\text{pow}(-8,3)=-512$ and $\\text{pow}(6,3)=216$."]],"created_at":"2026-03-03 11:01:14"}}