FACTCG2 - Medium Factorization

no tags 

The task in this problem is to write a number in a multiplication of prime numbers separated by “ x ”. You need to put the number 1 in this multiplication.

Input

The input consists of several lines.

Each line consists of one integer N (1 <= N <= 10^7) .

Output

For each line you need to output the factorization separated by “ x ” and including 1.

Sample

Input
1
2
4
8

Output
1
1 x 2
1 x 2 x 2
1 x 2 x 2 x 2

hide comments
shahzada: 2017-03-01 15:17:42

so many optimizations.

aditya930: 2017-02-02 22:17:10

nice problem....use sieve....!!!!

sandeepg97: 2016-12-10 12:27:34

@yash Sharma...you made my day!!!

((actually couple of days :p)) ...thanks!

sushantoberoi3: 2016-08-25 18:16:54

use printf/scanf...cin/cout-> tle

ritik_001: 2016-08-09 15:11:23

AC after 6 WA(s).. that extra space costed me a lot. ;(

aspro: 2016-06-02 14:15:11

very good question .... optimise the sieve as much as possible...

shikhar0037: 2016-01-27 16:06:25

use scanf and printf .Also print solution in ascending order only.

darkhire21: 2016-01-15 15:24:12

learned new thing , nice problem .

darkhire21: 2016-01-15 15:15:03

changing X to x accepted .

hassangarh: 2016-01-13 17:43:41

after so many tle finally!!!


Added by:Phyllipe Medeiros
Date:2012-02-26
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64