a = list(map(int, input().split()))
a = [i for i in a if i % 4 == 0 and i % 3 != 0]
comp = 1
for i in a:
comp *= i
print(comp)
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
a = list(map(int, input().split()))
a = [i for i in a if i % 4 == 0 and i % 3 != 0]
comp = 1
for i in a:
comp *= i
print(comp)