Skip to content

Latest commit

 

History

History

P031

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Problem 031

Write a program which writes each input number as sum of two prime numbers. Each case may contain more than one answer.

Goldbach's conjecture is one of the best-known unsolved problems in number theory. https://en.wikipedia.org/wiki/Goldbach%27s_conjecture

Persian Description

برنامه ای بنویسید که سعی کند هر عدد ورودی را به صورت جمع دو عدد اول محاسبه کند. ورودی فقط زوج و بزرگتر از ۲ هست. هر ورودی ممکن است بیش از یک جواب داشته باشد.

حدس گلدباخ که یکی از مسائل معروف حل نشده ریاضی است. https://en.wikipedia.org/wiki/Goldbach%27s_conjecture

Sample Input/Output

Input:

10
26
75
52

Output:

3, 7
3, 23
2, 73
23, 29