- Time limit: 1.00 s
- Memory limit: 512 MB
The equilateral number is obtained by taking the sum of the first positive integers. For example, the th equilateral number is .
Given a positive integer , 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 .
Output
Output the smallest amount of equilateral numbers whose sum is .
Constraints
Example
Input:
5
Output:
3
Explanation: You need at least three equilateral numbers (you can choose , , and ).