#include <stdio.h> #include <math.h> int main() { int a=2,b; scanf("%d",&b); int c = (int)pow(a,b); printf("%d",c); return 0; }