思路:

巧用pow函数即可

int main(void)
{
    int i;
    scanf("%d",&i);
    i=pow(2,i);
    printf("%d",i);
    return 0;
}