ASCII code

AtCoder
IDabc252_a
Time2000ms
Memory256MB
Difficulty
The ASCII values of the lowercase English letters `a`, `b`, $\ldots$, `z` are $97,98,\ldots,122$ in this order. Given an integer $N$ between $97$ and $122$, print the letter whose ASCII value is $N$. ## Constraints * $N$ is an integer between $97$ and $122$ (inclusive). ## Input Input is given from Standard Input in the following format: $N$ [samples]
Samples
Input #1
97
Output #1
a

$97$ is the ASCII value of `a`.
Input #2
122
Output #2
z
API Response (JSON)
{
  "problem": {
    "name": "ASCII code",
    "description": {
      "content": "The ASCII values of the lowercase English letters `a`, `b`, $\\ldots$, `z` are $97,98,\\ldots,122$ in this order. Given an integer $N$ between $97$ and $122$, print the letter whose ASCII value is $N$.",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc252_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "The ASCII values of the lowercase English letters `a`, `b`, $\\ldots$, `z` are $97,98,\\ldots,122$ in this order.\nGiven an integer $N$ between $97$ and $122$, print the letter whose ASCII value is $N$.\n...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments