1167 正方形面积


Submit solution

Points: 100
Time limit: 1.0s
Memory limit: 32M

Problem types
Allowed languages
C, C++, Java, Python

Description

根据读入的正整数值,输出其正方形的面积数。

Input

输入数据含有不超过50个的正整数(1≤n≤10000),每个正整数之间以空格隔开。

Output

每次读入一个正整数,便输出其正方形的面积数,每个面积数应回车。

Sample

Input

1 3 5 7

Output

1
9
25
49

Source: qianneng


Comments

There are no comments at the moment.