Python Program to check if a number is Disarium number


0


What is the Disarium number?

A number is supposed to be the Disarium number when the aggregate of its digit raised to the intensity of their separate positions gets equivalent to the number itself.

1^1+ 7^2 + 5^3 = 1+ 49 + 125 = 175

Python Program to check if a number is Disarium number


Check Output Here