Program for Armstrong Numbers
Given a number x, determine whether the given number is Armstrong's number or not. A positive integer of n digits is called an Armstrong number of order n (order is the number of digits) if abcd... = pow(a,n) + pow(b,n) + pow(c,n) + pow(d,n) + .... Here a, b, c and d are digits of input number abcd.