using System;
public class Program
{
public static void Main()
int number = 50;
//original code was : if (number == 50) ";"
if (number == 50) //the wrong thing about this code was the semicollon as the syntax of the if statement was not finished yet
Console.WriteLine("Number is 50");
}