#325. 求 π 的值

求 π 的值

Background

Special for beginners, ^_^

Description

根据公式:

$$arctanx(x) = x-{x^3\over 3}+{x^5\over 5}-{x^7\over 7}+\cdots$$

以及

π=6arctanx(13)\pi=6\cdot arctanx({1\over \sqrt 3})

定义函数 arctanx(x)arctanx(x),求当最后一项小于 10610^{-6}ππ 的值。

Format

Input

(无)

Output

ππ 的值。保留到小数点后 1010 位。

Samples

(无)
(无)

Limitation

1s, 1024KiB for each test case.