Statement ========= The Armstrong number is called a number. If we multiply each number by the power of the number of numbers, it becomes equal to that number. for example: Consider the number 153 153 is a three-digit number, so we multiply each of its numbers by the power of three and add it together: 153 = 1 * 1 * 1 + 5 * 5 * 5 + 3 * 3 * 3 The number 153 is an Armstrong number. You must recive An integer number (n) and find all of natural armstrong numbers less than n Input description ================= n : a possetive integer number Output description ================== All of armstrong number less than n line by line Constraints =========== 0