using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
if( Program.test1() && Program.test2() ) {
}
private static bool test1() { Console.WriteLine("test1"); return false; }
private static bool test2() { Console.WriteLine("test2"); return true; }