| 1 |
using System;
|
| 2 |
class Program
|
| 3 |
{
|
| 4 |
static bool isPrime(int x)
|
| 5 |
{
|
| 6 |
|
| 7 |
{
|
| 8 |
if (x % i == 0)
|
| 9 |
{
|
| 10 |
|
| 11 |
}
|
| 12 |
}
|
| 13 |
|
| 14 |
}
|
| 15 |
static void Main()
|
| 16 |
{
|
| 17 |
int x = Convert.ToInt32(Console.ReadLine());
|
| 18 |
if (isPrime(x))
|
| 19 |
{
|
| 20 |
|
| 21 |
}
|
| 22 |
else
|
| 23 |
{
|
| 24 |
|
| 25 |
}
|
| 26 |
}
|
| 27 |
}
|