Files
CodeObject/zeta_cpp/completed/2903.cpp
2024-03-14 16:31:19 +09:00

9 lines
143 B
C++

#include <iostream>
#include <cmath>
int main() {
int n;
std::cin >> n;
std::cout << (int) pow(((1 << n) + 1), 2);
return 0;
}