Drop links or images here to add them to the editor.

Square Function

Create a function named cuadrado.

The function must receive an integer and return the square of that number.

Required function

int cuadrado(int x)

Input

An integer.

Output

The square of the number.

Examples

Input:

5

Output:

25

Input:

-3

Output:

9