8. Write a program to read a number n and print n^2, n^3 and n^4. / sa 11 ip chapter 3, sa 12 cs chapter 6, Uncategorized / By PythonCSIP CS IP # Code n = int(input()) print(n, n*n, pow(n, 3), pow(n, 4))