forked from vedantpople4/problem_solving_cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path472A.cpp
More file actions
37 lines (30 loc) · 1.1 KB
/
472A.cpp
File metadata and controls
37 lines (30 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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.
#CODE:
#include<bits/stdc++.h>
#include<cmath>
using namespace std;
int main()
{
int n;
cin>>n;
if(n%2==0)
{
int m = n/2;
if(m%2==0)
cout<<m<<" "<<m;
else
cout<<m+1<<" "<<m-1;
}
else if(n%2==1)
{
int m = n-9;
cout<<m<<" "<<n-m;
}
return 0;
}