#include <iostream>

void f(int n) {
   n += 1;
}

int main( ) {
   int n = 5;
   f(n);
   std::cout << n;
}
