A. Design Tutorial: Learn from Math

A. Design Tutorial: Learn from Math
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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.

Sample test(s)
input
12
output
4 8
input
15
output
6 9
input
23
output
8 15
input
1000000
output
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.



       做完了项目,在公司实在没事干,只能干点有趣的事情了。做个水题放松下也是极好的方式。

  

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;

#define M 1e6




int pae[M];

void init()
{

   memset(pae,0,sizeof(pae));

   for(int i=2;i<=M;i++)
   {

    for(int j=2;j*i<=M;j++)
    {

        pae[i*j]=1;
    }


   }






}






int main()
{

    int n;
    init();
    while(scanf("%d",&n)!=EOF)
    {
        for(int i=2;i<=n/2;i++)
        {

            if(pae[i]&&pae[n-i])
            {
                printf("%d %d\n",i,n-i);
                break;

            }
        }

    }

    return 0;
}









评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值