#include <iostream>
using namespace std;

int main() {
    // Hardcoded side length of the cube
    double side = 5.0; // You can change this number to any value
    double volume;

    // Calculate the volume
    volume = side * side * side;

    // Display the result
    cout << "The volume of the cube with side " << side << " is: " << volume << endl;

    return 0;
}