fork download
  1. import java.util.*;
  2. import java.lang.*;
  3. import java.io.*;
  4.  
  5. class Ideone
  6. {
  7. public static void main (String[] args) throws java.lang.Exception
  8. {
  9. int x = 2;
  10. x += x++ * x++ * x++;
  11. System.out.println(x);
  12. int y = 1;
  13. y += y++ * y++ * y++;
  14. System.out.println(y);
  15. }
  16. }
Success #stdin #stdout 0.08s 380160KB
stdin
Standard input is empty
stdout
26
7