using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
int test = 5;
if (test > 1) {
Console.WriteLine("Got here");
}
else if (test > 2) { // this is also true, but since we already got into the first if, it doesn't get here.
Console.WriteLine("Didnt hit");
else {
Console.WriteLine("Nope");