using System;
public class Program
{
public static void Main()
// bool condition = true;
bool condition = false;
if (condition)
Console.WriteLine("The variable is set to true.");
}
else
Console.WriteLine("The variable is set to false.");