Computer Science, asked by pranav51598, 11 months ago

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

Answers

Answered by wtegwr
3

Answer:

Explanation:

n = int(input())

for i in range(1,5):

print(n*i)

Similar questions