Calc

AtCoder
IDabc172_a
Time2000ms
Memory256MB
Difficulty
Given an integer $a$ as input, print the value $a + a^2 + a^3$. ## Constraints * $1 \leq a \leq 10$ * $a$ is an integer. ## Input Input is given from Standard Input in the following format: $a$ [samples]
Samples
Input #1
2
Output #1
14

When $a = 2$, we have $a + a^2 + a^3 = 2 + 2^2 + 2^3 = 2 + 4 + 8 = 14$.
Print the answer as an input. Outputs such as `14.0` will be judged as incorrect.
Input #2
10
Output #2
1110
API Response (JSON)
{
  "problem": {
    "name": "Calc",
    "description": {
      "content": "Given an integer $a$ as input, print the value $a + a^2 + a^3$.",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc172_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "Given an integer $a$ as input, print the value $a + a^2 + a^3$.\n\n## Constraints\n\n*   $1 \\leq a \\leq 10$\n*   $a$ is an integer.\n\n## Input\n\nInput is given from Standard Input in the following format:\n\n$...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments