/******************************************************************************

                            Online Java Compiler.
                Code, Compile, Run and Debug java program online.
Write your code in this editor and press "Run" button to execute it.

*******************************************************************************/
import java.util.*;
public class Main
{
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a;
		int x;
		int poz = 0;
		int lih = 0;
		int vss = 0;
		int vs = 0;
		for (x = 0; x < 10; x++){
		    System.out.print("Vnesi stevilo ");
		    a = sc.nextInt();
		    vs += a;
		    if (a >= 0)
		        poz++;
		    if (a % 2 != 0)
		        lih++;
		    if (a % 2 == 0)
		        vss += a;
		}
		 System.out.println("Št pozitivnih števil: "+poz);
		 System.out.println("Št lihih števil: "+lih);
		 System.out.println("Vsota vseh št: "+vs);
		 System.out.println("Vsota sodih št: "+vss);
		
	}
}