|
|||||||
|
Weaker Goldbach
In the year of 1742 C. Goldbach wrote in his letter to L. Euler that according to him each integer
n>5 was the sum of three prime numbers (a prime number is an integer n>1, which has only two
positive, integer divisors: 1 and
n.). Euler answered, that Golbach's statement was equal to the one, that each
even number n>=4 was the sum of two prime numbers. However, it did not make them any closer to the solution of the basic problem: is it really so? At the present we know that this
statement is true for numbers up to 1011 (and we know much more, but this hypothesis is still an open problem). We are not about to verify that, but we will try to solve a less ambitious problem. Each integer
n>=10 is the sum of different odd prime numbers. TaskWrite a program which:
There could be many of such decompositions. Your program can find any of them. InputIn the first line of the text file GOL.IN there is one positive integer n, n<=40. In each of the following n lines there is one integer from the interval [10,...,2 000 000 000].OutputDecomposition of the number k has to be written in two lines. In the first line one integer m>=1 should be written, this is the number of addends of the decomposition. In the second line m different odd numbers should be written in ascending order. Their sum should be equal to k, and they should be separated by single spaces. The decompositions should appear in the same order as the integers in the input file.ExampleFor the input file GOL.IN: 2 59 15 the correct answer is the output file GOL.OUT: 5 5 7 11 17 19 3 3 5 7 Print friendly version |