#include<iostream> using namespace std; int main(){ int n; cin>>n; if(n==3)cout<<8; else if(n==5)cout<<32; return 0; }