package pl.codegym.task.task04.task0429;
/*
Liczby dodatnie i ujemne
*/
import java.io.*;
public class Solution {
public static void main(String[] args) throws Exception {
//tutaj wpisz swój kod
BufferedReader reader = new BufferedReader ( new InputStreamReader(System.in));
String liczbaA = reader.readLine();
String liczbaB = reader.readLine();
String liczbaC = reader.readLine();
int a = Integer.parseInt(liczbaA);
int b = Integer.parseInt(liczbaB);
int c = Integer.parseInt(liczbaC);
int x = 0;
int y = 0;
if (a>0 && b>0 && c>0 ) {
x=3;
y=0;
}
else if (a<0 && b<0 && c<0) {
x=0;
y=3;
}
else if (a == 0 && b==0 && c==0) {
x=0;
y=0;
}
else if ((a>0 && b>0 && c<0) || (a>0 && b<0 && c>0) || (a<0 && b>0 && c>0) || (a == 0 && b==0 && c==0)) {
x=2;
y=1;
}
else if ((a>0 && b<0 && c<0) || (a<0 && b<0 && c>0) || (a<0 && b>0 && c<0) || (a == 0 && b==0 && c==0)) {
x=1;
y=2;
}
System.out.println("Liczba liczb dodatnich: " + x);
System.out.println("Liczba liczb ujemnych: " + y);
}
}
package pl.codegym.task.task04.task0429;
/*
Liczby dodatnie i ujemne
*/
import java.io.*;
public class Solution {
public static void main(String[] args) throws Exception {
//tutaj wpisz swój kod
BufferedReader reader = new BufferedReader ( new InputStreamReader(System.in));
String liczbaA = reader.readLine();
String liczbaB = reader.readLine();
String liczbaC = reader.readLine();
int a = Integer.parseInt(liczbaA);
int b = Integer.parseInt(liczbaB);
int c = Integer.parseInt(liczbaC);
int x = 0;
int y = 0;
if (a>0 && b>0 && c>0 )
{
x=3;
y=0;
}
else if (a<0 && b<0 && c<0)
{
x=0;
y=3;
}
else if (a == 0 && b==0 && c==0)
{
x=0;
y=0;
}
else if ((a>0 && b>0 && c<0) || (a>0 && b<0 && c>0) || (a<0 && b>0 && c>0) || (a == 0 && b==0 && c==0))
{
x=2;
y=1;
}
else if ((a>0 && b<0 && c<0) || (a<0 && b<0 && c>0) || (a<0 && b>0 && c<0) || (a == 0 && b==0 && c==0))
{
x=1;
y=2;
}
System.out.println("Liczba liczb dodatnich: " + x);
System.out.println("Liczba liczb ujemnych: " + y);
}
}