using System;
public class Program
{
public static void Main()
var person = new { Name = "Sievajet" };
Console.WriteLine(person.Name);
}