using System;
public class Program
{
public static void Main()
bool a = true;
bool b = false;
Console.WriteLine("1+1=2 this it{0}",a);
Console.WriteLine("1+1=5 this it{0}",b);
}