#include using namespace std; using Graph = vector>; int main(){ ios::sync_with_stdio(0); cin.tie(nullptr); int n; cin >> n; cout << n*n << endl; }