Computer Science, asked by jhonvivas8705, 11 months ago

Write a program in python to read a number n and print n^2,n^3,n^4

Answers

Answered by Aashka2019
24
n = int(input())
for i in range(1,5):
print(n*i)
please mark as brainliest your answer is here...
Similar questions