You are given an integer $a$. How many positive square numbers are there that they are smaller or equal to $a$?.
### Input
- An integer $a$.
### Output
- The number of satisfied square numbers.
### Constraints
- $(1 \le a \le 10^{18})$.
### Example
Input:
```
26
```
Output:
```
5
```