def is_it(a):
    # a est un nombre entier

    for k in range(2,a):
        if a % k == 0:
            return False

    return True
