#include<stdio.h>
void main()
{
   a=3;
   b=4;
   printf("%d",a++ * ++a);
}