//Write a program in OOP way that would display the Make, Model, and Type of a vehicle.
//Display the Make and Type information for two different types of vehicles.
using System;
public class Program
{
public static void Main()
Console.WriteLine("Sample Output");
Console.WriteLine("Vehicle: Toyota, Type: Car");
Console.WriteLine("Vehicle: BMW, Type: Bike");
}