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