4 lines
94 B
Python
4 lines
94 B
Python
a=list(map(int,input().split()))
|
|
for i in range(len(a)):
|
|
if a[i]%2==0:
|
|
print(a[i]) |