InterviewSolution
Saved Bookmarks
| 1. |
Write an algorithm to find the square of a number |
| Answer» Start-> take a number from user -->multiply the number by itself-->End<br>a=int(input())Print( a**2) | |