public static void Main()
Console.WriteLine("Write a number and I will tell you if it is prime or not. ");
num = int.Parse(Console.ReadLine());
for ( int i = 1; i <= 20; i++)
Console.WriteLine("The number is prime.");
Console.WriteLine("The number is not prime.");