Problem5771--分解合数

5771: 分解合数

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB  Special Judge

Description

给一个正整数 $n\ (10 \leq n \leq 10^9)$,请输出两个合数,使得他们的和等于 $n$。题目保证有解。

Input

一行一个正整数 $n$。

Output

一行包括两个正整数 $a,\ b$,同时 $a+b=n$。
如果有多组答案,只要输出任意一组即可。

Sample 1 Input

12

Sample 1 Output

6 6

Sample 2 Input

25

Sample 2 Output

15 10

Sample 3 Input

10

Sample 3 Output

4 6

Source/Category