reference 73 B

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