Coding is the closest thing we have to superpower !

30 : 依样画葫芦-数的平方
描述

下面一段代码的功能是:输入一个数,输出这个数的2倍。

#include <bits/stdc++.h>

using namespace std;

int main(){

int a;//定义一个变量,用来存储数据

cin >> a;//输入一个数,放入到a中

cout << a * 2;//输出

return 0;

}

你需要实现功能:输入一个数,输出它的平方。

输入

 输入一个整数

输出

输出这个数的平方

样例

输入

1

输出

1

输入

3

输出

9

输入

6

输出

36
语言:
主题: