#include <stdio.h>

int main()
{
	int x,n;
	scanf("%d",&x);
	n=x*x;
	
	printf("%dの2乗は%dです。\n",x,n);
       return 0;
}
