#include using namespace std; #include using namespace atcoder; using mint = modint998244353; using ll = long long; #define rep(i, n) for (ll i = 0; i < (n); i++) #define reps(i,a,b) for(ll i = (a); i < (b); i++) bool chmin(auto& a, auto b) { return a > b ? a = b, 1 : 0; } bool chmax(auto& a, auto b) { return a < b ? a = b, 1 : 0; } vector sin45 = { 0, 1, 1, 1, 0, -1, -1, -1 }, cos45 = { 1, 1, 0, -1, -1, -1, 0, 1 }; vector dx = {0, 1, 0, -1}; vector dy = {1, 0,-1, 0}; #define ft first #define sd second #define all(x) std::begin(x), std::end(x) #define mp(a,b) make_pair(a,b) #define pii pair #define pll pair #define pb(x) push_back(x) #define so(z) sort(z.begin(),z.end()) #define sor(z) sort(z.rbegin(),z.rend()) #define vec vector #define vecc vector> int main() { cin.tie(nullptr); ios_base::sync_with_stdio(false); cout << fixed << setprecision(20); ll n; cin >> n; cout << n*n << endl; }