PROGRAMMING:Finding positive integer solutions of special equations
This problem requires that for any given positive integer $$n $$, all positive integer solutions of the equation $$x ^ 2 + y ^ 2 = n $$.
###Input format:
Input gives a positive integer $$n $$($$Le $$10000) on one line.
###Output format:
Output all positive integer solutions of the equation $$x ^ 2 + y ^ 2 = n $, where $$X / y $$. Each solution occupies one line, and the two numbers are separated by one space, and output in the increasing order of $$x $$. If there is no solution, output 'no solution'.
###Input sample 1:
```in
eight hundred and eighty-four
```
###Output sample 1:
```out
10 28
20 22
```
###Input example 2:
```
eleven
```
###Output example 2:
```
No Solution
```
answer:If there is no answer, please comment
###Input format:
Input gives a positive integer $$n $$($$Le $$10000) on one line.
###Output format:
Output all positive integer solutions of the equation $$x ^ 2 + y ^ 2 = n $, where $$X / y $$. Each solution occupies one line, and the two numbers are separated by one space, and output in the increasing order of $$x $$. If there is no solution, output 'no solution'.
###Input sample 1:
```in
eight hundred and eighty-four
```
###Output sample 1:
```out
10 28
20 22
```
###Input example 2:
```
eleven
```
###Output example 2:
```
No Solution
```
answer:If there is no answer, please comment