Can every natural number be written as a sum of four primes? The answer is yes for every natural number of 8 or more, but David did not know that. He decided to run a program that hunts for a number which cannot be written as a sum of four primes.
A prime is a natural number that is divisible by exactly two distinct natural numbers. For example, 37 is divisible only by 1 and 37, so it is prime.
Given a natural number n, find four primes whose sum is n. Several answers can exist, so print only the one that comes first in lexicographic order once the four primes are listed in non-decreasing order.