using System;
public class Program
{
public static void Main()
bool a, b;
a = b = true;
Console.WriteLine("a: " + a);
Console.WriteLine("b: " + b);
}