#include<iostream> #include<cmath> using namespace std; int main(){ int n; cin >> n; int room=n*pow(2,20); cout << room/4 << endl; return 0; }