#include using namespace std; int powerOf(int base, int e=2) { if(e==0) return 1; int result = base; for(int i=1; i