Намекните, пожалуйста, что упущено. Спасибо.
package com.javarush.task.task04.task0428;
/*
Положительное число
*/
import java.io.*;
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 x = 0;
if (a > 0){
x = x + 1;
}
if(b > 0){
x = x + 1;
}
if (c > 0){
x = x + 1;
}
if (a < 0 && b < 0 && c < 0){
System.out.println("0");
}
System.out.println(x);
}
}