#include <stdio.h>

int main(void) {
	// your code goes here
	return 0;
}
// **************************************************
// Function: calcAreaOfRectangle
//
// Description: Calculates the area of a Rectangle
//
//
// Parameters: base   - base of the Rectangle
//             height - height of the Rectangle
//
// Returns:    area - area of Rectangle
//
// ***************************************************

float calcAreaOfTriangle(float width, float height) // float width and height
{

    float area; // area of the Rectangle
  
    // calculate area
    area = 0.5 * width * height; // Area of triangle is .5 x W x H plugin variables
    // TODO  - add missing code HERE
    printf("The area is : %f\n", area); // Display the area according to calculation
    
    return (area);
} //calcAreaOfTriangle