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

                            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 = 1;
		int b = 0;
		int c = 0;
		while (a != 0){
		    System.out.print("Vnesi st: ");
		    a = sc.nextInt();
		    b++;
		    if (a > 33)
		        c++;
		}
		b--;
		System.out.println("Od "+b+" vnesenih števil jih je bilo "+c+" večjih od 33.");
	}
}