Accept an integer as input and print its square as output.
Input
A single line containing an integer.
Output
A single line: the square of the input.
Example
Input:
5
Output:
25
Write a complete program: read the input with input() and print the result with print().
Input
5
Output
25