#include<stdio.h> #include<stdlib.h> int main() { int n,i=2; scanf("%d",&n); n--; while(n--) { i = i << 1; } printf("%d",i); return 0; }