Preparando MOJI

Fadi and LCM

1000ms 262144K

Description:

Today, Osama gave Fadi an integer $$$X$$$, and Fadi was wondering about the minimum possible value of $$$max(a, b)$$$ such that $$$LCM(a, b)$$$ equals $$$X$$$. Both $$$a$$$ and $$$b$$$ should be positive integers.

$$$LCM(a, b)$$$ is the smallest positive integer that is divisible by both $$$a$$$ and $$$b$$$. For example, $$$LCM(6, 8) = 24$$$, $$$LCM(4, 12) = 12$$$, $$$LCM(2, 3) = 6$$$.

Of course, Fadi immediately knew the answer. Can you be just like Fadi and find any such pair?

Input:

The first and only line contains an integer $$$X$$$ ($$$1 \le X \le 10^{12}$$$).

Output:

Print two positive integers, $$$a$$$ and $$$b$$$, such that the value of $$$max(a, b)$$$ is minimum possible and $$$LCM(a, b)$$$ equals $$$X$$$. If there are several possible such pairs, you can print any.

Sample Input:

2

Sample Output:

1 2

Sample Input:

6

Sample Output:

2 3

Sample Input:

4

Sample Output:

1 4

Sample Input:

1

Sample Output:

1 1

Informação

Codeforces

Provedor Codeforces

Código CF1285C

Tags

brute forcemathnumber theory

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 09:57:57

Relacionados

Nada ainda