#include <iostream>
#include <complex>
#include <iomanip>

int main()
{
	std::cout << std::fixed << std::pow(2, 96) << '\n';
}