fork(1) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. unchecked {
  8. int a = -1, b = -2;
  9. Console.WriteLine(a + " -> " + (uint)a);
  10. Console.WriteLine(b + " -> " + (uint)b);
  11. }
  12. }
  13. }
Success #stdin #stdout 0.03s 24184KB
stdin
stdout
-1 -> 4294967295
-2 -> 4294967294