#include using namespace std ; //-------------------------------------------------------------------- int main() { int x1 = 100 ; int& ref1 = x1 ; int& ref2 = ref1 ; cout << x1 << " " << ref1 << " " << ref2 << endl ; return(0) ; }