using System; namespace ProgramConsole { class Program { static void Main(string[] args) { for (int i = 0; i < 9999; i++) { Console.WriteLine(Case1()); } } static bool Case1() { if (1 < 2) return true; else return false; } } }