Created
April 23, 2017 19:19
-
-
Save mikl745/2cc890b451e896ec69c1cf39abb29a4c 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment