#include using namespace std ; int main() { int x1 = 5 ; int& ref1Var = x1 ; cout << ref1Var << endl ; ref1Var++ ; cout <