#include <iostream>
using namespace std;
void Creare(int Vector[], int numarElemente)
{
for (int i = 0; i <= numarElemente - 1; i++)
{
cin >> Vector[i];
}
}
int Produs(int Vector[], int numarElemente)
{
int P = 1;
for (int i = 0; i <= numarElemente - 1; i++)
{
P = P * Vector[i];
}
return P;
}
int main()
{
int n, V[50];
cout << "Introduceti numarul de elemente: ";
cin >> n;
cout << "Introduceti elementele: ";
Creare(V, n);
cout << "Produsul elementelor este: ";
cout << Produs(V, n);
}