#D1662. Jumping Jack

    ID: 1386 Type: Default 1000ms 64MiB

Jumping Jack

Jumping Jack

Jack is working on his jumping skills recently. Currently he's located at point zero of the number line. He would like to get to the point x. In order to train, he has decided that he'll first jump by only one unit, and each subsequent jump will be exactly one longer than the previous one. He can go either left or right with each jump. He wonders how many jumps he needs to reach x.

Input

The input data consists of only one integer x ( - 109 ≤ x ≤ 109).

Output

Output the minimal number of jumps that Jack requires to reach x.

Examples

Input

2

Output

3

Input

6

Output

3

Input

0

Output

0

inputFormat

Input

The input data consists of only one integer x ( - 109 ≤ x ≤ 109).

outputFormat

Output

Output the minimal number of jumps that Jack requires to reach x.

Examples

Input

2

Output

3

Input

6

Output

3

Input

0

Output

0

样例

2
3

</p>