Files
CodeObject/zeta/cpp/completed/2903.cpp
2025-05-07 04:44:30 +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;
}