Programming Examples
Python program to check number is special or not

Write a Python Program which accept a number form user and check number is Special or Not.
Special number is a integer number which where addition of sum of digit and product of digits are same to number.
Example:
29:
2 + 9 = 11
2 x 9 = 18
11 + 18 = 29
Solution:
Output
Enter any Number : 29
it is Special NumberÂ
========================Â
Enter any Number : 30
it is not a Special NumberÂ