#include using namespace std; int main(void) { int N; cin >> N; int ans=pow(N,2); cout << ans << endl; return 0; }