#include int main(){ int n, tmp; std::cin >> n; for(int i = 1; i <= n; i++){ tmp+=n; } std::cout << tmp << std::endl; }