I tried \"x = y ** e\", but that didn\'t work.
or you could just write the power function, with recursion as a added bonus
int power(int x, int y){ if(y == 0) return 1; return (x * power(x,y-1) ); }
yes,yes i know this is less effecient space and time complexity but recursion is just more fun!!