Square Area
Make a program for an integer and print the area of a side square.
Input
The input consists of a line containing an integer .
Output
The output consists of a line containing the area of the side square.
Constraints
- The given integers have no value greater than 1000 or less than 1
Input Samples | Output Samples |
---|---|
1
|
1
|
2
|
4
|
3
|
9
|