Помогите надо написать на питоне
sum = 0
while True:
a = int(input())
if a == 0:
break
if (a % 4 == 0) and (a % 10 == 2):
sum += 1
writeln(sum)