#include using namespace std; // Mu float power(float a, int b) { if (b == 1) return a; float t = pow(a, b / 2); if (b % 2 == 0) { return t * t; } else return t * t * a; } int main() { cout << power(8, 3); return 0; }