I need answer ASAP
Given a set of five numbers that include both positive and negative data values. Create a program to read in these values one at a time and count the number of positive values (including zero) and the number of negative values found in the set. Print out these counted values.
Example:
Set of values: 1, -1, 0, 2, 4
Negative: 1
Positive: 4