public static void Main()
Console.WriteLine("I am inside if x equal to 5 condition");
Console.WriteLine("We just increased x value by 1 using the ++ operator, new x value is: " + x);
Console.WriteLine("I am inside if x is greater than 5 and less than 10 condition, X: value is " + x);
Console.WriteLine("We just decreased x value by 1 using the -- operator, new x value is: " + x);
Console.WriteLine("I am inside if x not equal to 5 condition, X: value is " + x);
Console.WriteLine("I am inside nested if which checks if x is greater than or equal to 100, X: value is " + x);
Console.WriteLine("I am inside nested if which checks if x is less than or equal to 100, X: value is " + x);
Console.WriteLine("I am inside an else condition where x is not equal to 5, yet neither greater than or equal nor less than or equal to a , X: value is " + x);
Console.WriteLine("I am inside if x not equal to 5 AND x is greater 1 condition, X: value is " + x);