#define PT 5.5
#define S(x) PT*x*x
#include<stdio.h>
main()
{
	int a=1,b=2;
	printf("%4.1f\n",S(a+b));
}