Răspuns :

Răspuns:

Explicație:

#include <iostream>

using namespace std;

int main()

{

   int x, p=1, nci=0;

   cin>>x;

   while (x>0)

   {

       int uc=x%10;

       if (uc%2!=0)

       {

           ++nci;

           p=p*uc;

       }

       x=x/10;

   }

   if (nci>0)

   {

       cout<<p;

   }

   else

   {

       cout<<-1;

   }

   return 0;

}