Square Numbers

Problem Statement

Given an integer x, find x2

Input Format

Input consists of an integer x

Output Format

Output consists of an integer x2

Constraints

1 ≤ x ≤ 109

Sample #0

Input:

5

Output:

25

Code Editor

#Some Python code