#include <stdio.h>
int power_of_2 (int n) {
  int counter, result = 1;
  for (counter = n; counter--;)
    result = 2 * result;
  return result;
}
main ( ) {
 printf ("The third power of 2 is %i\n", power_of_2 (3));
}
