using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace sort_mass
{
class Program
{
static void Main(string[] args)
{
int[] a = new int[10];
Random r = new Random();
for (int i = 0; i < 10; i++)
{
a[i] = r.Next(10);
Console.Write(a[i]+" ");
}
Console.WriteLine();
Array.Sort(a);
for (int i = 0; i < 10; i++)
Console.Write(a[i] + " ");
Console.ReadKey();
}
}
}