Create 5 - Finding Factors.py
This commit is contained in:
parent
fc57152e0b
commit
04578ce07f
4
07/c/5 - Finding Factors.py
Normal file
4
07/c/5 - Finding Factors.py
Normal file
@ -0,0 +1,4 @@
|
||||
n = int(input())
|
||||
for i in range(1, n + 1):
|
||||
if n%i == 0:
|
||||
print(i, "times", n//i, "equals", n)
|
Loading…
Reference in New Issue
Block a user