B. Calculate The Area
time limit per test
1.5 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Mahmoud bought a rectangular shaped land, it's area was $$$n$$$ $$$units^2$$$.

His best friend Ayoub asked him to calculate the height and the width of the land.

Mahmoud hates math, can you help him to calculate the height and the width of the land?

If there are multiple solutions print any of them.

Input

The input contains single integer $$$n$$$ , $$$(1 \leq n \leq 200)$$$ represent the area

Output

Print two integers that represent the height and the width of the rectangle, if there are multiple solutions print any of them.

Examples
Input
20
Output
4 5
Input
16
Output
4 4
Input
6
Output
2 3
Note

area = height*width