#include <iostream>
using namespace std;

void bleble (int a) { a = 999; }

int main() {
	int b = 777;
	bleble(b);
	cout << b;
	return 0;
}