#include<stdio.h>
int main()
{
	int x,y,z;
	x=y=z=3;
	printf("%d",x+++x++);
	printf("\n%d",(++y)+(++y));
	printf("\n%d",(++z)+(z++));
}