from System import *
from System.Collections.Generic import *
from System.Linq import *
class Program(object):
def Main(args):
lstInts = List[int](1, 206, 34, -4, 590, 61, 78, 8, 9, 180, 237)
minNum = lstInts.Min() #lowest number
maxNum = lstInts.Max() #highest number
Console.WriteLine("Min = {0} , Max = {1}", minNum, maxNum)
Console.ReadKey(True)
Main = staticmethod(Main)
/*
Min = -4 , Max = 590
*/