A Weird Dragon

We all know about Daenerys Targaryen and her three dragons. And we also know that one of those drago…

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 R,L,W;
	double A;
	scanf("%d%d%d",&R,&L,&W);
	A=L*W;
	printf("%lf",A);
	return 0;
}

How can I produce output for the second sample given in the problem?

You didn’t even use R. :slight_smile: