#include <stdio.h>

int main(void) {
	int x , a;
	scanf("%d",&x);
	printf("入力された整数は%dです\n",x);

a=x^3;

printf("xの３乗は%dです",a);

	return 0;
}
