# 15(16) РТ

 avatar
user_8840555
python
2 years ago
353 B
4
Indexable
for a in range(1, 1000):
    a_podoshel = True
    for x in range(1, 1000):
        for y in range(1, 1000):
            if ((2 * x - y < a) or ((x > 55) or (y > 32))) == False:
                a_podoshel = False
                break
        if a_podoshel == False:
            break
    if a_podoshel == True:
        print(a)
# 15(16) РТ
Editor is loading...