public class HalloweenOrChristmas
public static void Main()
HalloweenOrChristmas hoc = new HalloweenOrChristmas();
Console.Write("Enter month:");
hoc.m = Convert.ToString(Console.ReadLine());
Console.Write("Enter plate day:");
hoc.d = int.Parse(Console.ReadLine());
if (hoc.m == "OCT" || hoc.m== "oct")
Console.WriteLine("Halloween");
else if (hoc.m == "DEC" || hoc.m == "dec")
Console.WriteLine("Christmas");
Console.WriteLine("None");