public static void Main()
Console.WriteLine("Before calling the function: ");
Console.WriteLine("i= "+i+".j="+j);
changeNumsDemo(i, ref j);
Console.WriteLine("AFTER calling the function: ");
Console.WriteLine("i= "+i+".j="+j);
static void changeNumsDemo(int a, ref int b)