here I am not able to pass the verification of error no. 3,5,6.
package com.codegym.task.task04.task0429;
/*
Positive and negative numbers
*/
import java.io.*;
public class Solution {
public static void main(String[] args) throws Exception {
//write your code here
BufferedReader re = new BufferedReader(new InputStreamReader(System.in));
int a = Integer.parseInt(re.readLine());
int b = Integer.parseInt(re.readLine());
int c = Integer.parseInt(re.readLine());
int counter = 0;
int n = 0;
if(a > 0)
counter++;
else if(a < 0)
n++;
if(b > 0)
counter++;
else if(b < 0)
n++;
if(c > 0)
counter++;
else if(c < 0)
n++;
System.out.println("Number of negative numbers: "+n);
System.out.println("Number of Positive numbers: "+counter);
}
}