#include using namespace std; #define REP(i,a) for(int i = 0; i < (a); i++) #define ALL(a) (a).begin(),(a).end() typedef long long ll; typedef pair P; const int INF = 1e9; const int MOD = 1e9 + 7; struct UnionFind{ vector par; vector siz; UnionFind(int n){ init(n); } //n要素で初期化 void init(int n){ par.resize(n); siz.resize(n); for(int i = 0; i < n; i++){ par[i] = i; siz[i] = 1; } } //木の根を求める int root(int x){ if(par[x] == x) return x; else return par[x] = root(par[x]); } //xとyの属する集合を併合 void unite(int x, int y){ x = root(x); y = root(y); if(x == y) return; if(siz[x] < siz[y]) swap(x, y); siz[x] += siz[y]; par[y] = x; } bool same(int x, int y){ return root(x) == root(y); } int size(int x){ return siz[root(x)]; } }; signed main(){ int n,m; cin >> n >> m; UnionFind uf(n); int a,b; REP(i,m){ cin >> a >> b; a--; b--; if(uf.root(a) > uf.root(b)){ swap(a,b); } uf.unite(uf.root(a), uf.root(b)); } REP(i,n){ cout << uf.root(i) + 1 << endl; } }