fork(12) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int n = 16;
  8. Console.Write("0x{0:x2} 0x{1:x2}", (n & 0xff00) >> 8, n & 0xff);
  9. }
  10. }
Success #stdin #stdout 0.04s 36968KB
stdin
Standard input is empty
stdout
0x00 0x10