Factorization
Very easy
Execution time limit is 1 second
Runtime memory usage limit is 64 megabytes
Given a number, your task is to decompose it into its prime factors.
Input
You are provided with a number N (2 ≤ N ≤ 10^9).
Output
Output the prime factorization of the number, listing the factors in ascending order and separated by spaces.
Examples
Input #1
Answer #1
Input #2
Answer #2
Submissions 3K
Acceptance rate 36%