Power

AtCoder
IDabc283_a
Time2000ms
Memory256MB
Difficulty
Given integers $A$ and $B$, print the value $A^B$. ## Constraints * $1 \leq A, B \leq 9$ * All values in the input are integers. ## Input The input is given from Standard Input in the following format: $A$ $B$ [samples]
Samples
Input #1
4 3
Output #1
64

$4^3 = 64$, so $64$ should be printed.
Input #2
5 5
Output #2
3125
Input #3
8 1
Output #3
8
API Response (JSON)
{
  "problem": {
    "name": "Power",
    "description": {
      "content": "Given integers $A$ and $B$, print the value $A^B$.",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc283_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "Given integers $A$ and $B$, print the value $A^B$.\n\n## Constraints\n\n*   $1 \\leq A, B \\leq 9$\n*   All values in the input are integers.\n\n## Input\n\nThe input is given from Standard Input in the followin...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments