/*
Чётные и нечётные циферки
*/

public class Solution {

    public static int even;
    public static int odd;

    public static void main(String[] args) throws IOException {
       int a;
       int b=0;
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        a = Integer.parseInt(reader.readLine());

        for (; a!=0 ; a/=10) {
            ++b;
            if (a%2!=0){
                ++odd;
            }
            else {
                ++even;
            }
        }
        System.out.println("Even: "+even+ " Odd: "+odd);//напишите тут ваш код
    }
}