Counting Murgis

Ever since that wicked thief took away some of her murgis (hens, that is), Meena was ever anxious th…

Click here to read the complete problem statement.


If you need help solving this problem, mention your approach and ask specific questions. Please avoid sharing your code and asking the Community to figure out “what’s wrong”.

#include <stdio.h>

int main() {
	int a,b,c,d,e;
	scanf("%d",&a);
	scanf("%d %d \n%d %d",&b,&c,&d,&e);
	printf("%d \n%d",b-c,d-e);
	return 0;
}

problem???

Read The Input section correctly.