using System.Collections.Generic;
public static void Main()
int[] numbers = Console.ReadLine().Split(' ').Select(n => int.Parse(n)).ToArray();
int num = int.Parse(Console.ReadLine());
for(int i = 0; i < numbers.Length; i++)
Console.WriteLine("Number exists in the list");
Console.WriteLine("Not exists in the list");