using System;
public class Program
{
public static void Main()
var v = 785;
var top = v >> 8;
var bottom = v << 8;
Console.WriteLine(top);
Console.WriteLine(bottom);
}