import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] sa = br.readLine().split(" "); int n = Integer.parseInt(sa[0]); int m = Integer.parseInt(sa[1]); Map> map = new HashMap<>(); for (int i = 0; i < n; i++) { sa = br.readLine().split(" "); int b = Integer.parseInt(sa[0]) - 1; int c = Integer.parseInt(sa[1]) - 1; List list = map.get(c); if (list == null) { list = new ArrayList<>(); map.put(c, list); } list.add(b); } br.close(); UnionFind uf = new UnionFind(m); for (Integer key : map.keySet()) { List list = map.get(key); if (list.size() > 1) { int f = list.get(0); for (int i = 1; i < list.size(); i++) { uf.union(f, list.get(i)); } } } System.out.println(m - uf.num); } static class UnionFind { int[] parent, size; int num = 0; // 連結成分の数 UnionFind(int n) { parent = new int[n]; size = new int[n]; num = n; for (int i = 0; i < n; i++) { parent[i] = i; size[i] = 1; } } void union(int x, int y) { int px = find(x); int py = find(y); if (px != py) { parent[px] = py; size[py] += size[px]; num--; } } int find(int x) { if (parent[x] == x) { return x; } parent[x] = find(parent[x]); return parent[x]; } /** * xとyが同一連結成分か */ boolean same(int x, int y) { return find(x) == find(y); } /** * xを含む連結成分のサイズ */ int size(int x) { return size[find(x)]; } } }