#include <stdio.h>

int main(void) {
	// your code goes here
long	int a=1;
	int b=12;
	printf("a=%d,b=%d",a,b);
	return 0;
}
