using System;
using System.Collections.Generic;
using System.Linq;
public class Program
{
public static void Main()
Random rnd = new Random();
List<int> list = new List<int>();
for(int i =0;i<10;i++)
list.Add(rnd.Next(100));
// Please add your code to order list by odd and than even numbers
foreach(var v in list)
Console.Write($"{v} ");
}