Design Tutorial: Learn from Math

简介: Design Tutorial: Learn from Math

文章目录

一、Design Tutorial: Learn from Math

总结


一、Design Tutorial: Learn from Math

本题链接:Design Tutorial: Learn from Math


题目:

A. Design Tutorial: Learn from Math

time limit per test1 second

memory limit per test256 megabytes

inputstandard input

outputstandard 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 ≤ 1e6).


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

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.


本博客给出本题截图:

image.png

image.png

题意:输入一个大于等于12的数,把它拆成两个合数并输出

AC代码

#include <iostream>
using namespace std;
int main()
{
    int n;
    cin >> n;
    if (n % 2) cout << 9 << ' ' << n - 9;
    else cout << 4 << ' ' << n - 4;
    return 0;
}

总结

水题,不解释


目录
相关文章
|
8月前
|
数据可视化 数据挖掘 数据处理
SPSS(Statistical Package for the Social Sciences)
SPSS(Statistical Package for the Social Sciences)是一种统计分析软件,广泛用于社会科学、商业和健康领域的数据分析。它提供了一套功能强大的工具和方法,用于数据收集、数据处理、数据可视化和统计分析。
159 1
|
机器学习/深度学习 人工智能 索引
Numpy User Guide系列笔记1:NumPy Quickstart Tutorial笔记
本文是NumPy quickstart这一教程的简单学习笔记。我学习这一教程的目的在于回顾numpy基础知识,以辅助后期对机器学习、人工智能这类较复杂知识的更深一步学习。 本文基于自己学习这一教程时撰写的jupyter notebook文件、以更便于网页浏览的方式改编而成。jupyter notebook文件的代码基本上全部基于原教程撰写,文件已发布在GitHub上,链接为:all-notes-in-one/NumpyQuickStartTutorials.ipynb at main · PolarisRisingWar/all-notes-in-one。
Basic Concepts of Genetic Data Analysis
Basic Concepts of Genetic Data Analysis
879 0
|
程序员 Go
Learn English -- Being late
个人学习笔记
817 0
|
iOS开发 开发者 C++
Effective Objective-C 2.0 Tips 总结 Chapter 5,6,7
Effective Objective-C 2.0 Tips 总结 Chapter 5,6,7 Chapter 5 内存管理 Tips 29 理解引用计数 引用计数是 Objective-C 内存管理的基础,包括 ARC 也是建立在引用计数的基础之...
1256 0