using System;
/*
For this quest, you will be asked to create a program that has a method in it.
The method should take two integers from the main program and return an integer.
The method needs to compare the two integers and return the one that is larger.
If they are the same size, you can return either one.
*/
public class Program
{
public static void BigNum(int numOne, int numTwo)
if(numOne>=numTwo)
Console.WriteLine("The biggest number is: "+numOne);
}
else //if (numOne<=numTwo)
Console.WriteLine("The biggest number is: "+numTwo);
public static void Main()
BigNum(-5, -5);