public static void Main()
int bits,byti,kilobyte,megabyte,bakebits;
Console.WriteLine("the ammount of bits");
bits=int.Parse(Console.ReadLine());
Console.WriteLine("num of megabytes {0}",megabyte);
kilobyte=(bits%8388608)/8192;
Console.WriteLine("num of kilobytes {0}",kilobyte);
byti=(bits%8388608%8192)/8;
Console.WriteLine("the num of biti {0}",byti);
Console.WriteLine("the num of bakebits {0}",bakebits);