using System;
public class Program
{
public static void Main()
int[] number = new int[]
1,
12,
523,
53,
29,
593,
-30,
65
-3,1
};
//print the smallest number (-30)
//print the largest number (593)
}