#include <stdio.h>

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