public static void Main()
Console.WriteLine("\n --- For REGULAR NOUNS --- \n");
Console.WriteLine($"I have {count1} apple{(count1 == 1 ? "" : "s")}.");
Console.WriteLine($"I have {count2} apple{(count2 == 1 ? "" : "s")}.");
Console.WriteLine("\n --- For IRREGULAR NOUNS --- \n");
Console.WriteLine($"He has {count1} {(count1 == 1 ? "leaf" : "leaves")}.");
Console.WriteLine($"He has {count2} {(count2 == 1 ? "leaf" : "leaves")}.");