не пойму что в моем варианте не так
package com.javarush.task.jdk13.task04.task0429;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Scanner;
/*
Положительные и отрицательные числа
*/
public class Solution {
static Scanner sc = new Scanner (System.in);
public static void main(String[] args) throws Exception {
//напишите тут ваш код
int a = sc.nextInt();
int b = sc.nextInt();
int c = sc.nextInt();
System.out.println("количество отрицательных чисел: "+checkIntNeg(a,b,c));
System.out.println("количество положительных чисел: "+checkIntPos(a,b,c));
}
static int checkIntPos(int a,int b, int c){
int positive=0;
if(a>0){
positive +=1;
}
if(b>0){
positive +=1;
}
if(b>0){
positive +=1;
}
return positive;
}
static int checkIntNeg(int a, int b, int c){
int negative = 0;
if(a<0){
negative +=1;
}
if(b<0){
negative +=1;
}
if(c<0){
negative +=1;
}
return negative;
}
}