using System;
public class Program
{
public static void Main()
int i = 1;
byte b= (byte)(i);
Console.WriteLine(b);
}