using System;
public class Program
{
public static void Main()
Car carBrand = new() {Name = "CarBrand"};
Console.WriteLine("Name="+carBrand.Name);
Console.WriteLine("CountWheels="+carBrand.CountWheels);
}
struct Car
public string Name { get; init; }
public float CountWheels { get; } = 4;