import java.io.*; import java.util.*; 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; int y = 0; if (a>0) x++; else y++; if (b>0) x++; else y++; if (c>0) x++; else y++; System.out.println("количество отрицательных чисел: "+y+", количество положительных чисел: "+x); } }