#include<iostream> using namespace std; int main() { int n=1; n=n*2; n=n*2; n*=2; n*=2; n*=2; cout<<n<<endl; return 0; }