using System;
public class Program
{
public static void Main()
int i = 5;
Console.WriteLine("Hello World " + i);
if (i == 5) {
throw new System.ArgumentException("i no puede ser 5");
}