2 תשובות
1. x = int(input("enter number: "))
if x <200 and x>100 and x %10 ==0:
print("yes")
else:
print("no")
2.
x =[int(input("enter number")) for i i range(5)]

for value in x:
if value %2==0 and value >100:
print(value)