Problem hidden
|This problem was hidden by Editorial Board member probably because it has incorrect language|version or invalid test data, or description of the problem is not clear.|

CP011 - Сөрөг тоонууд

Өгөгдсөн 5 тооноос сөрөг тоо хэд байна вэ?

Input

5 тоо өгөнө.

Output

Сөрөг тоонуудын тоог хэвлэнэ.

Example

Input:
1 2 -4 1 2

Output:
1

Example

Input:
0.5  2 -4.5 10 -5.2

Output:
2

Нэмсэн:munkhbat
Огноо:2015-02-12
Хугацааны хязгаарлалт:1s
Эх кодын хэмжээний хязгаарлалт:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Програмчлалын хэлүүд:Бүгд дараах хэлүүдээс бусад: ASM64 NCSHARP JS-MONKEY JULIA PYPY3

hide comments
2024-11-15 03:59:00
#include <iostream>
using namespace std;

int main() {
int negative_count = 0;
double num;


for (int i = 0; i < 5; ++i) {
cin >> num;
if (num < 0) {
++negative_count;
}
}


cout << negative_count << endl;

return 0;
}

© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.