Не вижу ошибок.Помогите пожалуйста!
package com.javarush.task.jdk13.task04.task0429;
import java.io.BufferedReader;
import java.io.InputStreamReader;
/*
Положительные и отрицательные числа
*/
public class Solution {
public static void main(String[] args) throws Exception {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
int a = Integer.parseInt(reader.readLine());
int b = Integer.parseInt(reader.readLine());
int c = Integer.parseInt(reader.readLine());
int count = 0;
int icount = 0;
if (a > 0) {
count++;
} else if (a < 0) {
icount++;
} if (b > 0) {
count++;
} else if (b < 0) {
icount++;
} if (c > 0) {
count++;
} else if (c < 0) {
icount++;
}
System.out.println("количество отрицательных чисел: " + count);
System.out.println("количество положительных чисел: " + icount);
}
}