public static void Main()
Console.WriteLine("Please give me a positive number, and I will tell you if it is smaller, equal or larger than 100.");
num = int.Parse(Console.ReadLine());
Console.WriteLine("Equal to 100");
Console.WriteLine("Smaller than 100");
Console.WriteLine("Larger than 100");
Console.WriteLine("Please write another number, this is not a positive number.");