fork(2) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int a = 5;
  8. int b = 12;
  9. a += b;
  10. b -= b += b;
  11. b += a;
  12. a -= b;
  13. Console.WriteLine(a + " " + b);
  14. }
  15. }
Success #stdin #stdout 0.03s 33824KB
stdin
Standard input is empty
stdout
12 5