using System;
public class Ex3_TD8
{
public static void Main()
Console.WriteLine("Sélectionner x");
int x = Convert.ToInt32(Console.ReadLine());
int k = 2;
int d = 1;
while(k!=x)
if(x%k == 0)
d = d+1;
}
k = k+1;
if(d == 1)
Console.WriteLine(x + " est un nombre premier");
else
Console.WriteLine(x + " n'est pas un nombre premier");