fork download
  1. class Output{
  2. public static void main(String args[])
  3. {
  4. int x , y;
  5. x = 10;
  6. x++;
  7. --x;
  8. y=x++;
  9. System.out.println(x +" "+y);
  10. }
  11. }
Success #stdin #stdout 0.14s 57592KB
stdin
Standard input is empty
stdout
11 10