Prime SUM

Description

Generate the list of prime numbers which will add up to the given number.

Requirements

Constraints

Input

The HTTP POST request will come with a body of Content-Type: application/json

{ "input": 19 }

Output

[19] or [17,2] or [11, 5, 3]