using System;
public class Program
{
public static void Main()
float w, h,total,total2;
w = 15;
h = 5;
total = w * h;
total2 = 1/2f *total;
Console.WriteLine("Result = "+total);
Console.WriteLine("Result2 ="+total2);
}