fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int x = 0x2A000000;
  8. Console.WriteLine(Convert.ToString(x, 2).PadLeft(sizeof(int) << 3, '0').Substring(0, 3));
  9. }
  10. }
Success #stdin #stdout 0.03s 24576KB
stdin
Standard input is empty
stdout
001