#include using namespace std; int main() { int n, area; cin >> n; area = n * n; cout << area << endl; return 0; }