using System.Collections.Generic;
public static void Main()
string[] arr = {"banana", "peach", "apple", "mango", "strawberry"};
LinkedList<string> products = new LinkedList<string>(arr);
string l = Console.ReadLine();
if(products.Contains(l.ToLower()))
Console.WriteLine("That product is available");
Console.WriteLine("That product is unavailable");