public static void Main()
Console.WriteLine("Hi! Please write a number and I'll tell you if it's prime or not");
num = int.Parse(Console.ReadLine());
for (int c = 1; c <= num; c++)
Console.WriteLine("The number is prime.");
Console.WriteLine("The number is not prime.");