fork download
  1. using System;
  2. class Foo
  3. {
  4. public static void Main(string[] args)
  5. {
  6. int x = 2;
  7. x += x++ * x++ * x++;
  8. Console.Write(x);
  9. }
  10. }
Success #stdin #stdout 0.03s 38000KB
stdin
Standard input is empty
stdout
26