1177: 【基础】整数串拆段

Memory Limit:64 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:1 Solved:1

Description

将一个长度小于10位的数字串拆成2段,使其和为最小的素数。
例如数字串‘13304’ 
拆的方法有: 
1 + 3304 = 3305 
13 + 304 = 317 
133 + 04 = 137 
1330 + 4 = 1334 
从上面可看出,和为素数的有:317 与137,最小的是137

Input

一个长度小于10的数字串

Output

最小的和为素数的数,若无素数则输出 -1

Sample Input Copy

13304

Sample Output Copy

137