3.14

AtCoder
IDabc314_a
Time2000ms
Memory256MB
Difficulty
The number pi to the $100$\-th decimal place is `3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679`. You are given an integer $N$ between $1$ and $100$, inclusive. Print the value of pi to the $N$\-th decimal place. More precisely, truncate the value of pi to $N$ decimal places and print the result without removing the trailing `0`s. ## Constraints * $1\leq N\leq 100$ * $N$ is an integer. ## Input The input is given from Standard Input in the following format: $N$ [samples]
Samples
Input #1
2
Output #1
3.14

Truncating the value of pi to $2$ decimal places results in `3.14`. Thus, you should print `3.14`.
Input #2
32
Output #2
3.14159265358979323846264338327950

Do not remove the trailing `0`s.
Input #3
100
Output #3
3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679
API Response (JSON)
{
  "problem": {
    "name": "3.14",
    "description": {
      "content": "The number pi to the $100$\\-th decimal place is `3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679`. You are given an integer $N$ between $1$ and $",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc314_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "The number pi to the $100$\\-th decimal place is\n`3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679`.\nYou are given an integer $N$ between $1$ and $...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments