using System;
using System.Linq;
using System.Collections.Generic;
public class Program
{
public static void Main()
var result1 = false;
var result2 = false;
result1 &= PrintAndReturn("result1");
result2 = result2 && PrintAndReturn("result2");
}
private static bool PrintAndReturn(string tag)
Console.WriteLine($"{tag} returning");
return true;