display the numbers in the original set
WHat is THAT????/
package com.codegym.task.task04.task0428;
/*
Positive number
*/
import java.io.*;
public class Solution {
public static void main(String[] args) throws Exception {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
String w = reader.readLine();
int a = Integer.parseInt(w);
String x = reader.readLine();
int b = Integer.parseInt(x);
String y = reader.readLine();
int c = Integer.parseInt(y);
if ( a < 0 && b > 0 && c > 0){
System.out.println("2");
}
else if ( a > 0 && b < 0 && c > 0){
System.out.println("2");
}
else if ( a > 0 && b > 0 && c < 0){
System.out.println("2");
}
else if ( a == 0 && b == 0 && c == 0){
}
else if (a < 0 && b < 0 && c > 0){
System.out.println("1");
}
else if ( a < 0 && b < 0 && c < 0){
System.out.println("0");
}
else if ( a > 0 && b < 0 && c < 0){
System.out.println("1");
}
else if ( a > 0 && b > 0 && c > 0){
System.out.println("3");
}
}
}