#include <stdio.h>

void main()

{

    int x;

    float f;

    char c;

    printf("Enter the int,float,char values :");

    scanf("%d %f %c",&x,&f,&c);

    printf("\nX=%d \nF=%f \nC=%c",x,f,c);

}