Help me in solving INSTNOODLE problem

My issue

include <stdio.h>

int main(void) {
int X, Y, c;
c = maximum no of customers;
X = no of stoves;
Y = no of minutes;

C = X*Y;
printf(C);

return 0;

}

correct the code

My code

#include <stdio.h>

int main(void) {
	int X, Y, c;
	c = maximum no of customers;
	X = no of stoves;
	Y = no of minutes;
	

	

C = X*Y;
	    printf(C);
	

	return 0;
}


Learning course: Practice C
Problem Link: CodeChef: Practical coding for everyone

@vikash79
Your logic is right
Plzz refer the following solution for better understanding of the implementation.

#include <stdio.h>

int main()
{
	int x,y;
	scanf("%d %d\n",&x,&y);
	printf("%d\n",x*y);
	return 0;
}