| CodeRams Practice Problem Archive |
|---|
| Finished |
A number squared is defined as the number multiplied by itself. In this problem, given a number n, print the number $$$n^{2}$$$.
The only line of input contains a positive integer n.
Print the number $$$n^{2}$$$: n multiplied by itself.
6
36
| Name |
|---|


