#include <iostream>
#include <cmath>

using namespace std;

int main() 	
{
	float x, y;
	cin >> x;
	y = pow(x,3);
	cout << y;
}