fork download
  1. int x = 5;
  2. int y = x++;
  3. Console.WriteLine(y);
  4.  
  5.  
Success #stdin #stdout 0.05s 26708KB
stdin
Standard input is empty
stdout
5