//Pasando Parámetros POR REFERENCIA
#include<iostream>
using namespace std;

void duplicar (int& a, int& b, int& c)
{
	a*=2;
	b*=3;
	c*=5;
}

int main()
{
	int x=1, y=3, z=7;
	duplicar(x,y,z);
	cout<<"x="<< x <<", y="<< y <<", z=" << z;
	return 0;
}