Skip to content

Instantly share code, notes, and snippets.

@cyberlex404
Forked from mikl745/trydevper.py
Last active April 23, 2017 19:27
Show Gist options
  • Save cyberlex404/645a1731518e9ad371f075a3848f3e04 to your computer and use it in GitHub Desktop.
Save cyberlex404/645a1731518e9ad371f075a3848f3e04 to your computer and use it in GitHub Desktop.
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