Skip to content

Instantly share code, notes, and snippets.

@mikl745
Created April 23, 2017 19:19
Show Gist options
  • Save mikl745/2cc890b451e896ec69c1cf39abb29a4c to your computer and use it in GitHub Desktop.
Save mikl745/2cc890b451e896ec69c1cf39abb29a4c 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment