#include<stdio.h>int main(){ int i,N; scanf("%d",&N); for(i=1 ; i<=N ; i=i+1) { if(N%i==0) { printf("%d ",i); } } return 0;}