#include using namespace std; void suurenda(int& arv){ arv=arv+1; } int main(){ int a=5; suurenda(a); cout << a << endl; return 0; }