c = input().split(' ')
for i in c:
if int(i) == 237:
break;
elif int(i)%2 == 0:
print(i)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
c = input().split(' ')
for i in c:
if int(i) == 237:
break;
elif int(i)%2 == 0:
print(i)