L6Q2
Anonymous
plain_text
02/18/2025 5:01 PM
248 B
18
Indexable
def run():
n = int(input("Enter an integer: "))
print(f"{n} is divisible by: ", end="\n")
for i in range(1, n + 1):
if n % i == 0:
print(i, end="\n")Editor is loading...
Leave a Comment