a=int(input())
c=1
while c!=a:
(TAB) if a%c==0:
(2xTab) print(c)
(TAB)c=c+1
Ten program wypisuje wszystkie dzielniki danej liczby
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
a=int(input())
c=1
while c!=a:
(TAB) if a%c==0:
(2xTab) print(c)
(TAB)c=c+1
Ten program wypisuje wszystkie dzielniki danej liczby