CSES - HIIT Open 2024 - Equilateral numbers
  • Time limit: 1.00 s
  • Memory limit: 512 MB

The kthk\text{th} equilateral number is obtained by taking the sum of the first kk positive integers. For example, the 55th equilateral number is 1+2+3+4+5=151+2+3+4+5=15.

Given a positive integer nn, you want to represent it as a sum of equilateral numbers. How many numbers do you need at least?

Input

The only line of the input contains the integer nn.

Output

Output the smallest amount of equilateral numbers whose sum is nn.

Constraints

  • 1n10121 \le n \le 10^{12}

Example

Input:

5

Output:

3

Explanation: You need at least three equilateral numbers (you can choose 11, 11, and 33).