using System;
public class Program
{
public static void Main()
short s1 = -32768;
short s2 = 32767;
//short s3 = 35000; //compile-time error: Constant value '35000' cannot be converted to a 'short'
ushort us1 = 65535;
//ushort us2 = -32000; // compile-time error: Constant value '-32000' cannot be converted to a 'ushort'
Console.WriteLine(Int16.MaxValue);
Console.WriteLine(Int16.MinValue);
Console.WriteLine(UInt16.MaxValue);
Console.WriteLine(UInt16.MinValue);
}