public static void Main()
string typeofcar, brand, customer;
double priceperday = 0, discounts = 0, rentaldays, totalprice, totaldiscount, amounttopay;
Console.WriteLine("Customer Name");
customer = Convert.ToString(Console.ReadLine());
Console.WriteLine("Types of Car");
typeofcar = Convert.ToString(Console.ReadLine());
Console.WriteLine("brand");
brand = Convert.ToString(Console.ReadLine());
Console.WriteLine("Number of Car Rental Days");
rentaldays = Convert.ToDouble(Console.ReadLine());
if (typeofcar == "Small")
else if (brand == "Axia")
if (typeofcar == "Sedan")
else if (brand == "Bezza")
else if (brand == "Velfire")
totalprice=priceperday*rentaldays;
totaldiscount=totalprice*discounts;
amounttopay=totalprice-totaldiscount;
Console.WriteLine("OUTPUT");
Console.WriteLine("Customer Name:" + customer);
Console.WriteLine("Type of Car:" + typeofcar);
Console.WriteLine("Brand:" + brand);
Console.WriteLine("Number of Rental Day:" + rentaldays);
Console.WriteLine("Total Price:" + totalprice);
Console.WriteLine("Total Discounts:" + totaldiscount);
Console.WriteLine("Total Payment:" + amounttopay);