410503: GYM104030 D Disc District
Description
You live in the Disc District of Flatland and work for the Nearest Convenient Plot Company (NCPC). Your job is to find the nearest convenient plot of land outside of the Disc District to build on.
The Disc District can be described as a disc on a plane with center $$$(0, 0)$$$ and some radius $$$r$$$. So a point is outside of the Disc District if the (Euclidean) distance from it to the origin is strictly larger than $$$r$$$. A point $$$(x, y)$$$ on the plane is a convenient plot if $$$x$$$ and $$$y$$$ are integers.
InputThe only line of the input contains a single integer $$$r$$$ ($$$1 \leq r \leq 10^6$$$).
OutputThe output should contain a single line with two integers, the $$$x$$$ and $$$y$$$ coordinates of a convenient building location that is closest to the Disc District. If there are more than one answer, output any of them.
ExamplesInput1Output
1 1Input
8Output
4 7Input
90210Output
69551 57450