using System;
// Update the Reverse method to take in an integer and return
// the number in reverse, so 123 should become 321
public class Program
{
public static void Main()
Console.WriteLine(Reverse(123));
}
public static int Reverse(int number)
return number;