using System.Collections.Generic;
using System.Threading.Tasks;
static void Main(string[] args)
Console.WriteLine("nhập n: ");
n = int.Parse(Console.ReadLine());
static int TongCacSoNT(int n)
for (int i = 1; i <= n; i++)
if(LaSoNguyenTo(i) == true)
static bool LaSoNguyenTo(int n)
for (int i = 1; i <= Math.Sqrt(n); i++)
if (count == 1) return true;