1086: 再次验证关于偶数的哥德巴赫猜想

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:3 Solved:2

Description

“关于偶数的哥德巴赫猜想”是指任一大于2的偶数都可写成两个素数之和。请再次验证一下。

Input

一行,两个整数a和b(a<b)

Output

多行,顺序输出每行一个偶数及验证算式。
对于a和b区间的每个偶数,都输出一组算式来验证。
样式详见样例输出

Sample Input Copy

9 20

Sample Output Copy

10=3+7
12=5+7
14=3+11
16=3+13
18=5+13
20=3+17

Source/Category