#include <iostream>
using namespace std;
int v[102];
int main()
{
int n, p = 1;
cin >> n;
for(int i=1; i<=n; i++)
cin >> v[i];
for(int i=1; i<=n; i++)
if(v[i] > 0)
p *= v[i];
cout << p << endl;
for(int i=1; i<=n; i++)
if(v[i] > 0)
cout << v[i] << " ";
return 0;
}