#include <stdio.h> #include <math.h> int main() { int a = 0; while(scanf("%d", &a) != EOF) { printf("%.0f\n", pow(2,a)); } return 0; }