#D12908. Dima and Lisa

    ID: 10733 Type: Default 1000ms 256MiB

Dima and Lisa

Dima and Lisa

Dima loves representing an odd number as the sum of multiple primes, and Lisa loves it when there are at most three primes. Help them to represent the given number as the sum of at most than three primes.

More formally, you are given an odd numer n. Find a set of numbers pi (1 ≤ i ≤ k), such that

  1. 1 ≤ k ≤ 3
  2. pi is a prime

The numbers pi do not necessarily have to be distinct. It is guaranteed that at least one possible solution exists.

Input

The single line contains an odd number n (3 ≤ n < 109).

Output

In the first line print k (1 ≤ k ≤ 3), showing how many numbers are in the representation you found.

In the second line print numbers pi in any order. If there are multiple possible solutions, you can print any of them.

Examples

Input

27

Output

3 5 11 11

Note

A prime is an integer strictly larger than one that is divisible only by one and by itself.

inputFormat

Input

The single line contains an odd number n (3 ≤ n < 109).

outputFormat

Output

In the first line print k (1 ≤ k ≤ 3), showing how many numbers are in the representation you found.

In the second line print numbers pi in any order. If there are multiple possible solutions, you can print any of them.

Examples

Input

27

Output

3 5 11 11

Note

A prime is an integer strictly larger than one that is divisible only by one and by itself.

样例

27
3

23 2 2

</p>