#Python3
a = [int(input('Число %d: ' % (i+1)))%2 for i in range(4)]
print('Нечетных:', sum(a), '; четных', 4 - sum(a))