Integer Sum

AtCoder
IDabc272_a
Time2000ms
Memory256MB
Difficulty
You are given $N$ integers $A_1,A_2,\dots$, and $A_N$. Find the sum of the $N$ integers. ## Constraints * $1 \le N \le 100$ * $1 \le A_i \le 100$ * All values in the input are integers. ## Input The input is given from Standard Input in the following format: $N$ $A_1$ $A_2$ $\dots$ $A_N$ [samples]
Samples
Input #1
3
2 7 2
Output #1
11

You are given three integers: $2$, $7$, and $2$.
The answer is $2 + 7 + 2 = 11$.
Input #2
1
3
Output #2
3
API Response (JSON)
{
  "problem": {
    "name": "Integer Sum",
    "description": {
      "content": "You are given $N$ integers $A_1,A_2,\\dots$, and $A_N$. Find the sum of the $N$ integers.",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc272_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "You are given $N$ integers $A_1,A_2,\\dots$, and $A_N$.\nFind the sum of the $N$ integers.\n\n## Constraints\n\n*   $1 \\le N \\le 100$\n*   $1 \\le A_i \\le 100$\n*   All values in the input are integers.\n\n## In...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments