#include <stdio.h>
void main()
{
int x=10;
float f=10.8;
char c='A';
printf("x=%d \nf=%f \nc=%c",x,f,c);
}