View Code of Problem 73

#include<stdio.h>
int main(){
int i,j,n;
scanf("%d",&n);
  i=1;
  while(n>1){
  i=2*(i+1);
  n--;
  }
printf("%d\n",i);
}

Double click to view unformatted code.


Back to problem 73