using System;
public class Program
{
public static void Main()
Random r = new Random();
Console.Write("ต้องการสุ่มกาชากี่ใบ : ");
int num = int.Parse(Console.ReadLine());
int x = 0;
while(x < num){
x++;
int random = r.Next(1,11); //1=start,11=end
Console.Write(random);
if(random >= 1 && random <=9)
Console.WriteLine(" เกลือ ");
else
Console.WriteLine(" ไม่เกลือ ");
}