Check whether a number can be expressed as a sum of two prime numbers In Python
For example, the number 34 is given as input.
34 = 3 + 31
34 = 5 + 29
34 = 11 + 23
34 = 17 + 17
Program:
For example, the number 34 is given as input.
34 = 3 + 31
34 = 5 + 29
34 = 11 + 23
34 = 17 + 17
Nice
ReplyDelete