#include <iostream> 

int main() 
{ 
  int x = 5; 
  int &y = x; 

  ++y; 
  std::cout << x << std::endl; 
} 
