#include #include using namespace std; int main() { vector s; int el; for (int i = 0; i < 15; i++) { cin >> el; s.push_back(el); } int zero = 0; int below = 0; for (int x = 0; x < 10; x++) { if (s[x] < 0) { below++; } } for (int x = 0; x < 15; x++) { if (s[x] == 0) { zero++; } } cout