#include <iostream> int main() { int N; std::cin>>N; for(int i=1; i<=N;i++) if(N % i == 0) printf("%d\n",i); return 0; }