fork download
  1.  
  2. class Ideone
  3. {
  4. public static void main (String[] args) throws java.lang.Exception
  5. {
  6. int b = 7;
  7. int a = 7;
  8. a = b;
  9. a += 1;
  10.  
  11. System.out.println(a);
  12. System.out.println(b);
  13. }
  14. }
Success #stdin #stdout 0.1s 320256KB
stdin
Standard input is empty
stdout
8
7