power(a, b, temp){ temp = a; while(b-1 > 0){ a = temp * a; b = b - 1; } print(a); } Main() { //main power(3,5); }