-
-
Save cyberlex404/645a1731518e9ad371f075a3848f3e04 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
w = int(input()) | |
a = [int( input()) for x in range(w)] | |
y = [] | |
w = [] | |
def delit(n): | |
for i in range(1,n+1): | |
if n % i == 0: | |
w.append(i) | |
return w | |
print(dilit(min(a)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment