#8. 圆周率前三位

    ID: 8 Type: Default 1000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>codingbatArray-1gesp1顺序结构数学基础

圆周率前三位

First Three Digits of Pi

Background

The world of mathematics is full of fascinating numbers. Among them, pi (pi\\pi) is a very special constant that plays a central role in geometry and many scientific fields.

Problem Description

Return an integer array of length 33 containing the first 33 digits of pi (pi\\pi), which are {3,1,4}\{3, 1, 4\}.

Input Format

Input is given from standard input in the following format.

No input.

Output Format

Output is printed to standard output in the following format.

An integer array of length 33 containing the first 33 digits of pi (pi\\pi).

Sample


[3, 1, 4]

Sample Explanation

The first three digits of pi (pi\\pi) are 3,1,43, 1, 4. Therefore, the output array is [3,1,4][3, 1, 4].

Constraints

Time Limit: 1s, Memory Limit: 1024KiB.