Amazon Web Services (AWS) is a powerful cloud platform that lets businesses access computing, storage, and database services on demand. Companies can easily grow and manage their technology needs without maintaining physical infrastructure.
In cloud services, computing refers to the processing power and computational resources provided over the internet, allowing businesses to run applications and perform calculations without local hardware.

# Program to check Armstrong numbers in a certain interval
lower = 100
upper = 2000
for num in range(lower, upper + 1):
# order of number
order = len(str(num))
# initialize sum
sum = 0
temp = num
while temp > 0:
digit = temp % 10
sum += digit ** order
temp //= 10
if num == sum:
print(num)
Run Code
Output
My video