public static void Main()
var timer = DateTime.UtcNow;
Console.WriteLine("Start ANDs");
if (!string.IsNullOrWhiteSpace(a) && !string.IsNullOrWhiteSpace(b) && !string.IsNullOrWhiteSpace(c) && !string.IsNullOrWhiteSpace(d))
Console.WriteLine("(!A && !B && !C && !D) == true");
Console.WriteLine("End ANDs. Time Elapsed: " + DateTime.UtcNow.ToString("yyyy-MM-dd HH:mm:ss.fff") + " - " + timer.ToString("yyyy-MM-dd HH:mm:ss.fff"));
Console.WriteLine("Start ORs");
if (!(string.IsNullOrWhiteSpace(a) || string.IsNullOrWhiteSpace(b) || string.IsNullOrWhiteSpace(c) || string.IsNullOrWhiteSpace(d)))
Console.WriteLine("!(A || B || C || D) == true");
Console.WriteLine("End ORs. Time Elapsed: " + DateTime.UtcNow.ToString("yyyy-MM-dd HH:mm:ss.fff") + " - " + timer.ToString("yyyy-MM-dd HH:mm:ss.fff"));