Hide

Problem D
Disc District

/problems/discdistrict/file/statement/en/img-0001.jpg
Mount Taranaki in New Zealand. Image by NASA.

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.

Input

The only line of the input contains a single integer $r$ ($1 \leq r \leq 10^6$).

Output

The 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.

Sample Input 1 Sample Output 1
1
1 1
Sample Input 2 Sample Output 2
8
4 7
Sample Input 3 Sample Output 3
90210
69551 57450

Please log in to submit a solution to this problem

Log in