#include <stdio.h>
#include "power_of_two.h"
unsigned long power_of_two(unsigned char n)
{
return 1ul << n;
}