Given a number x, determine whether the given number is Armstrong number or not. A positive integer of n digits is called an Armstrong number of order n (order is number of digits) if :
abcd... = pow(a,n) + pow(b,n) + pow(c,n) + pow(d,n) + ....
Input : 1634
Output : The number is armstrong
14 + 64 + 34 + 44 = 1634