#include <iostream>
using namespace std;

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