#include <iostream>
using namespace std;
//this function is the fastest bacause it executes at compile time and is really fast ,
//but dont use it for like a big function
inline int cube(int s)
{
return s*s*s;
}
int main()
{
cout << "The cube of 3 is: " << cube(3) << "
";
return 0;
} //Output: The cube of 3 is: 27