#include <stdio.h>
int nijyou(int x){
	return x*x;
}
int main(void) {
	int a=-3;
	printf("%d^4=%d\n",a,nijyou(nijyou(a)));
	return 0;
}
