using System;
public class Program
{
public static void Main()
int a, i, n1 = 0, n2 = 0;
while ( i<5 )
Console.Write("Input Number{0}: ",i+1);
a = int.Parse(Console.ReadLine());
if (a > 5) n1++;
else n2++;
i++;
}
Console.WriteLine("จำนวนตัวที่มากกว่า 5 : {0}", n1);
Console.WriteLine("จำนวนตัวที่น้อยกว่า 5 หรือเท่ากับ 5 : {0}", n2);