#include <iostream>
#include <cmath>

int main() {
    double base = 2.0, exponent = -3.0;
    double result = pow(base, exponent);
    std::cout << base << " raised to the power of " << exponent << " is: " << result << std::endl;
    return 0;
}