2025-06-09 21:47:13 +09:00

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;
}