partie3_ex82.py

Created by cahier-indice-algo-1techno

Created on April 22, 2022

130 Bytes


def balayage(pas):
    x = 8
    while 0.25 * (x + 1) * (x - 7) < 3:
        x = x + pas
    return x - pas, x