1.

Write an algorithm to find the square of a number

Answer» Start-> take a number from user -->multiply the number by itself-->End
a=int(input())Print( a**2)


Discussion

No Comment Found