#include <stdio.h>

int main(void) {
	// your code goes here
    int a=1;
    float b=123456.789;
    char c='A';
    printf("a=%d\n",a);
    printf("b=%f\n",b);
    printf("c=%c\n",c);
	return 0;
}
