Genyumax male enhancement can adjust your romantic endeavors. and, that got you thinking. you were previously better at sex. but, something changed. and, now you’re lacking a bit. maybe you want more stamina, bigger size, or perhaps a higher libido. then, you saw that ad and wondered if this pill
could really make those things happen for you visit now - >
Вторая.
#include <iostream>
using std::cout;
using std::cin;
using std::endl;
int main()
{
double a[4][4];
int mass[4] = { 0 };
for(int i = 0; i < 4; i++)
{
for(int j = 0; j < 4; j++)
{
cin >> a[i][j];
}
}
cout << endl;
for(int i = 0; i < 4; i++)
{
for(int j = 0; j < 4; j++)
{
if(a[i][j] < 0.0)
{
mass[i]++;
}
}
}
for(int i = 0; i < 4; i++)
{
cout << mass[i] << ' ';
}
cout << endl;
return 0;
}