A. Design Tutorial: Learn from Math (拆合数)

题目链接:http://codeforces.com/problemset/problem/472/A

One way to create a task is to learn from math. You can generate some random math statement or modify some theorems to get something new and build a new task from that.

For example, there is a statement called the "Goldbach's conjecture". It says: "each even number no less than four can be expressed as the sum of two primes". Let's modify it. How about a statement like that: "each integer no less than 12 can be expressed as the sum of two composite numbers." Not like the Goldbach's conjecture, I can prove this theorem.

You are given an integer n no less than 12, express it as a sum of two composite numbers.

Input

The only line contains an integer n (12 ≤ n ≤ 106).

Output

Output two composite integers x and y (1 < x, y < n) such that x + y = n. If there are multiple solutions, you can output any of them.

Examples

input

Copy

12

output

Copy

4 8

input

Copy

15

output

Copy

6 9

input

Copy

23

output

Copy

8 15

input

Copy

1000000

output

Copy

500000 500000

Note

In the first example, 12 = 4 + 8 and both 4, 8 are composite numbers. You can output "6 6" or "8 4" as well.

In the second example, 15 = 6 + 9. Note that you can't output "1 14" because 1 is not a composite number.

题解:偶数的话4为最小合数,另一个n-4最小为8,也为合数(因为至少有2这个因子吗)。

奇数的话n最小为13,最小合数为4,另一个9也为合数,则只要输出9和n-9即可,因为n-9至少为4,以后逐渐加2,必定有因子2,为合数。

#include<bits/stdc++.h>
using namespace std;
int main()
{
    int n;
    cin>>n;
    if(n%2==0) //偶数拆为4和n-4
        cout<<"4 "<<n-4<<endl;
    else       //奇数拆为9和n-9
        cout<<"9 "<<n-9<<endl;
    return 0;
}

猜你喜欢

转载自blog.csdn.net/weixin_43824158/article/details/87921058