#include <stdio.h>

int main(void) {
	// your code goes here
int a=0;
float b=2.3;
printf("a=%d,b=%f",a,b);
	return 0;
}
