#include <iostream>
#include <cstdlib>
using namespace std;

int main() {
    double side, volume;

    // Ask the user for the length of one side of the cube
    cout << "Enter the side length of the cube: ";
    cin >> side;

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

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

    return 0;
}