using System;
public class Program
{
public static void Main()
int a = 1;
bool b = true;
string c = "Test";
Console.WriteLine(new {a, b, c}.ToString());
}