Write a program to check strong number?
A strong number said to be if sum of factorial of each digit
from n is equal to given number
i.e 145 = 1!
+ 4! + 5!
= 1
+ 24 + 120
=145
/* ***********************************
Girfa : Student Help
Strong Number Program