#include <stdio.h>

void main()
{
 int a;
 double b;
 a=2*3;
 b=10.2;
 printf("a=%d b=%f\n",a,b);
}