public static void Main()
int bits,byt,kilobyte,megabyte,bakebits;
Console.WriteLine("enter the number of Bits");
bits=int.Parse(Console.ReadLine());
Console.WriteLine("the megabyte is {0}",megabyte);
kilobyte=(bits%8388608)/8192;
Console.WriteLine("the kilobyte is {0}",kilobyte);
byt=(bits%8388608%8192)/8;
Console.WriteLine("the byt is {0}",byt);
Console.WriteLine("the bakebits is {0}",bakebits);