#include <stdio.h>

void main()
{
	int a,b=322;
	float x,y=8.88;
	char cl='k',c2;
	a=y;
	x=b;
	a=cl;
	c2=b;
	printf("%d,%f,%d,%c",a,x,a,c2);
}