reference 85 B

1234567
  1. void main() {
  2. int a = 5;
  3. int& b = &a;
  4. a = 6;
  5. print a;
  6. print b;
  7. }