public static void Main()
int c = int.Parse(Console.ReadLine());
if(c > 0) Console.WriteLine("c е по-малко от 0");
if(c == 0) Console.WriteLine("c е равно от 0");
if(c < 0) Console.WriteLine("c е по-голямо от 0");
int b = int.Parse(Console.ReadLine());
if(b % 2 == 0) Console.WriteLine("b е четно");
if(b % 2 != 0) Console.WriteLine("b е четно");
int a1 = int.Parse(Console.ReadLine());
int a2 = int.Parse(Console.ReadLine());
if(a1 >= 0 && a1 <= 23 && a2 >= 0 && a2 <= 59) Console.WriteLine("Вярно са въведени");
else Console.WriteLine("Грешно са въведени");