ile = 0

while True:
    try:
        linia = input()
        for x in linia.split():
            liczba = float(x)

            if liczba.is_integer():
                if int(liczba) % 2 != 0:   # nieparzysta
                    ile += 1
    except EOFError:
        break

print("Liczb nieparzystych:", ile)