#include <stdio.h>

int main(void) {
	// your code goes here
int a =1;
float b =2.5;
scanf("%d%d",&a,&b);
printf("a=%d\n,b=%f\n",a,b);
	return 0;
}
