{"raw_statement":[{"iden":"problem statement","content":"The number pi to the $100$\\-th decimal place is\n`3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679`.\nYou are given an integer $N$ between $1$ and $100$, inclusive.\nPrint the value of pi to the $N$\\-th decimal place.\nMore precisely, truncate the value of pi to $N$ decimal places and print the result without removing the trailing `0`s."},{"iden":"constraints","content":"*   $1\\leq N\\leq 100$\n*   $N$ is an integer."},{"iden":"input","content":"The input is given from Standard Input in the following format:\n\n$N$"},{"iden":"sample input 1","content":"2"},{"iden":"sample output 1","content":"3.14\n\nTruncating the value of pi to $2$ decimal places results in `3.14`. Thus, you should print `3.14`."},{"iden":"sample input 2","content":"32"},{"iden":"sample output 2","content":"3.14159265358979323846264338327950\n\nDo not remove the trailing `0`s."},{"iden":"sample input 3","content":"100"},{"iden":"sample output 3","content":"3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}