pull down to refresh

then i think it'll run forever because number does not iterate

lmao. This is an algorithm, it isn't written in any programming language.
I can't code, but Gemini turned my algorithm into Python for me. Ahah

number = 1
found = False

while not found:
found = True

for i in range(1, 21):
if number % i != 0:
found = False
break

if not found:
number += 1

print(f"n = {number}")

reply