public static void Main()
Console.WriteLine("Hello Guy");
Console.WriteLine("Please complete the assembly of the car and motorcycle");
Console.WriteLine("And Start Engine by StartEngine()");
public string Name { get; set; }
public class Motorcycle {
public int Size { get; set; }
public string FuelSupplySystem { get; set; }
public int Piston { get; set; }
public bool EngineStart { get; private set; } = false;
public void StartEngine(){
public class DriveSystem {
public int Wheel { get; set; }