#include <stdio.h>

//引数の二乗を返す関数
int square(int x){
	return x*x;
}
//main関数
int main(void) {
	int a=2;
printf("%d",square(square(a)));
	return 0;
}
