2267: 哥德巴赫猜想_1

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Normal Judger Creator:
Submit:93 Solved:40

Description

验证100以内任何一个大于6的偶数均可表示为2个素数之和。编写函数验证这一猜想,要求给定一个6到100的偶数,输出偶数等于两个素数之和的所有情况。

Input

1个偶数。

Output

偶数=素数1+素数2。(要求:素数1<素数2)可能输出有多行。注意:每行的素数1从上到下的大小顺序是递增的。

Sample Input Copy

30

Sample Output Copy

30=7+23
30=11+19
30=13+17

Source/Category