Write a program to check if a given integer is an Armstrong number or not. An Armstrong number is an n-digit number that is equal to the sum of its own digits raised to the power of n.
A positive integer n.
Print "Armstrong" if the input integer is an Armstrong number, otherwise print "Not Armstrong".
153
Armstrong