using System;class Sample { public static void Main() { byte xByte1 = 1, xByte2 = 51; Console.WriteLine(Math.Min(xByte1, xByte2)); }}