#include <stdio.h>
int main(void) 
{
	// your code goes here
int a = 7;
int b =923;
printf("a= %d,b =%d",a,b);
return 0;
}
