QOJ.ac

QOJ

Time Limit: 3.0 s Memory Limit: 1024 MB Total points: 100 Hackable ✓

#458. Prime Factorization

الإحصائيات

Given an integer $N$, you need to decompose $N$ into a product of primes integers $\prod p_i$.

Input

There are multiple test cases. The first line of the input contains a single integer $T$ ($1 \le T \le 10^3$), indicating the number of test cases.

For each test case, the first line of the input contains a single integer $N$ ($2 \le N \le 10^{18}$).

Output

For each test case, decompose $N$ into a product of several prime integers $N = p_1 \cdot p_2 \cdot \ldots \cdot p_k$ ($p_1 \le p_2 \le \ldots \le p_k$), and output a single line of integers $p_1, p_2, \ldots, p_k$.

Examples

Input

3
2
9
30

Output

2
3 3
2 3 5

Scoring

For all test cases, $1 \le T \le 10^3$, $2 \le N \le 10^{18}$.

Discussions

About Discussions

The discussion section is only for posting: Editorials, General Discussions (problem-solving strategies, alternative approaches), and Off-topic conversations.

This is NOT for reporting issues! If you want to report bugs or errors, please use the Issues section below.

Open Discussions 0
No discussions in this category.

Issues

About Issues

If you find any issues with the problem (statement, scoring, time/memory limits, test cases, etc.), you may submit an issue here. A problem moderator will review your issue.

Guidelines:

  1. This is not a place to publish discussions, editorials, or requests to debug your code. Issues are only visible to you and problem moderators.
  2. Do not submit duplicated issues. Submitting multiple issues may cause your account to be banned.
  3. Issues must be filed in English or Chinese only.
Active Issues 0
No issues in this category.
Closed/Resolved Issues 0
No issues in this category.