Little kai is so smart that his mama needs to give him more challenging tricks for a treat.
Now he needs to figure out if a number is a very special number.
A very special number is a number whose sum of its digits powered to the number of its digits is equal to the number itself.
For example:
153, because 153 = 13 + 53 + 33
1634, because 1634 = 14 + 64 + 34 + 44
54748, because 54748 = 55 + 45 + 75 + 45 + 85
Commands separated by a newline character.
Note that:
Each command is a positive integer n
0 < n < 109
If it is a very special number, output "Yes it is."
If not, output "No it is not."
You need to print a newline character at the end of each line. ('\n')