#define Sq(a) a*a
main()
{
	int a=6;
	int res=Sq(a);
	printf("%d\n",res);
	res=Sq(++a);
	printf("%d",res);
}