#include <iostream.h>

void main()
{
 int a,b;
 double c;

 a=2;
 b=3;

 c= (a+b)/2.0;

 cout << \"c = \" << c << \'\\n\';

}