9766
Объяснение:
x=9999
while x>1000:
a=0
b=0
s=str(x)
for i in s:
if int(i)%2==0:
a+=1
if int(i)<8:
b+=1
if a>1 and b>2:
print(s)
break
else:
x-=1
9766
Объяснение:
x=9999
while x>1000:
a=0
b=0
s=str(x)
for i in s:
if int(i)%2==0:
a+=1
if int(i)<8:
b+=1
if a>1 and b>2:
print(s)
break
else:
x-=1