001. Square The Number
001. Square The Number
time limit per test
1 secondmemory limit per test
256 megabytesinput
standard inputoutput
standard outputA number squared is defined as the number multiplied by itself. In this problem, given a number n, print the number .
Input
The only line of input contains a positive integer n.
Output
Print the number : n multiplied by itself.
Example
input
Copy
6
output
Copy
36
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print((int(input()))**2) |
Comments
Post a Comment
Please give us your valuable feedback