#include <iostream>
#include <cmath>
using namespace std;
void f(int& a){
a += 9;
std::cout << a;
}
int main() {
int a = 2;
f(a);
return 0;
}
I2luY2x1ZGUgPGlvc3RyZWFtPgojaW5jbHVkZSA8Y21hdGg+CnVzaW5nIG5hbWVzcGFjZSBzdGQ7CnZvaWQgZihpbnQmIGEpewphICs9IDk7CnN0ZDo6Y291dCA8PCBhOwp9CmludCBtYWluKCkgewoKaW50IGEgPSAyOwpmKGEpOwpyZXR1cm4gMDsKfQo=