#include main(){ int n,i; printf("Broj:\n"); scanf("%d",&n); for(i=1; i<=(n/2); i++){ if(n%i==0){ printf("%d\n",i); } } }