#include <stdio.h>

int main() {
	
	int length = 5;
	int breadth = 7;
	int area = length*breadth;
	
	printf("Area = %d\n", area);
	return 0;
}





