#include using namespace std; int main(){ // 入力 int n; cin >> n; // 計算 int ans = n * n; // 出力 cout << ans << endl; }