Computer Science, asked by LinaNeedsHelp, 6 hours ago

Write a program to accept any positive integer and check for 2 digit number.​

Answers

Answered by yuvrajdec30
0

Answer:

is in the explanation

Explanation:

Special two digit number

A special two-digit number is a number such that when the sum of the digits of the number is added to the product of its digits, the result is equal to the original two-digit number.

Examples :

input : 59.

output : 59 is a Special Two-Digit Number

Explanation:

Sum of digits = 5 + 9 = 14

Product of its digits = 5 x 9 = 45

Sum of the sum of digits

and product of digits = 14 + 45 = 59

input: 29

output: 29 is a Special Two-digit Number

Explanation:

Sum of digits = 9 + 2 = 11

Product of digits = 9 * 2 = 18

Sum of the sum of digits

and product of digits = 11 + 18 = 29

Similar questions