#include int main() { int n; std::cin >> n; std::cout << (n*n - 1) / 4 + 4*n << std::endl; return 0; }