The earth is a coordinate plane and your job is to protect it.
Given $$$K$$$ (the number of people on earth), you have to make a sheild to protect them.
Find the minimum integer radius of a circle which is centered in the $$$(0,0)$$$ coordinates and can contain $$$K$$$ person knowing that a person can only stand on integer coordinates and two people can't stand in the same spot.
Note 1: A person can stand in the center of the circle.
Note 2: The person is considered protected if he's inside the cricle or at the boundary of the circle.
The only line contains one integer $$$K$$$ ($$$ 2 \le K \le 10^9$$$) — the number of people on earth.
Print one integer: the minimum integer circle radius that we need to protect all $$$K$$$ citizens of the earth.
2
1
6
2
13
2