#include
#include
using namespace std;
int main(){
int numb;
for(numb=1; numb<=10; numb++){
cout << setw(4) << numb; //display 1st column
int cube = numb*numb*numb; //calculate cube
cout << setw(6) << cube << endl; //display 2nd column
}
return 0;
}