#include <stdio.h>

int main() {
    int n, r;
    scanf("%d",&n);
    r=2<<(n-1);
    printf("%d\n",r);
    return 0;
}