using System.Collections.Generic;
public static void RemoveAllEven(ref List<int> list){
List<int> even = new List<int>();
public static void Main()
List<int> numL = new List<int>();
Console.WriteLine("Please enter 5 district interger.");
string input = Console.ReadLine();
string[] inputL = input.Split(' ');
foreach(string a in inputL){
bool success = int.TryParse(a, out num);
Console.WriteLine("The amount of interget is wrong.");
Console.WriteLine("There are interger out of the range.");
for(int i = 0; i < numL.Count - 1; i++){
for(int j = i + 1; j < numL.Count; j++){
Console.WriteLine("There are more than one same interger.");
Console.WriteLine("Here are the interger entered.");
Console.WriteLine("{0}", i);
Console.WriteLine("Here are the interger without even number.");
Console.WriteLine("{0}", i);