303003: CF584D. Dima and Lisa

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Dima and Lisa

题意翻译

给定一个奇数 $ n $,将它表示为之多三个的素数之和。本题开启 $ SPJ $。

题目描述

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 $ p_{i} $ ( $ 1<=i<=k $ ), such that 1. $ 1<=k<=3 $ 2. $ p_{i} $ is a prime 3. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF584D/e7615e00ba022b6aedbad362df530b3fd81c2681.png) The numbers $ p_{i} $ do not necessarily have to be distinct. It is guaranteed that at least one possible solution exists.

输入输出格式

输入格式


The single line contains an odd number $ n $ ( $ 3<=n&lt;10^{9} $ ).

输出格式


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 $ p_{i} $ in any order. If there are multiple possible solutions, you can print any of them.

输入输出样例

输入样例 #1

27

输出样例 #1

3
5 11 11

说明

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

Input

题意翻译

给定一个奇数 $ n $,将它表示为至多三个的素数之和。本题开启 $ SPJ $。

加入题单

算法标签: