9 lines
119 B
C
9 lines
119 B
C
#include <stdio.h>
|
|
|
|
int main(){
|
|
int N;
|
|
scanf("%d",&N);
|
|
printf("%d",((1<<N)+1)*((1<<N)+1));
|
|
|
|
return 0;
|
|
} |