Introduction - If you have any usage issues, please Google them yourself
The positive integer n greater than 1 can be decomposed as follows: n = x1* x2* ...* xm. For example, when n = 12, a total of eight different decomposition of the formula: 12 = 12 12 = 6* 2 12 = 4* 3 12 = 3* 4 12 = 3* 2* 2 12 = 2* 6 12 = 2* 3* 2 12 = 2* 2* 3. Programming tasks: For a given positive integer n, programming n Total number of different decomposition.