#include <iostream> using namespace std; int main() { int x,cube; cin>>x; cube=x*x*x cout<<cube<<endl; return 0; }