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