using System;
public class Program
{
public static void Main()
// Create a program that will accept the base and height of a triangle and then print the area. Formula: A= 1/2bh. The display should be like this: Area is (are here)
//Input: Variable Declaration
float Base_T = 43.5f, Height_T = 91.3f;
double Area_T;
//Process: A= 1/2bh
Area_T = ((Base_T * Height_T)/1)/2;
//Output: Display area
Console.Write("Area is " + Area_T);
Console.ReadLine();
}