#include <stdio.h>
void main()
{
int x,sq;
printf("Enter a Integer : ");
scanf("%d",&x);
sq=x*x;
printf("\Square =%d",sq);
}