import sys sys.setrecursionlimit(500000) class UF: def __init__(self, n): self.root = [i for i in range(n)] self.subt = [1] * n def find(self, x): if self.root[x] == x: return x else: self.root[x] = self.find(self.root[x]) return self.root[x] def union(self, x, y): x, y = self.find(x), self.find(y) x, y = min(x, y), max(x, y) if x != y: self.subt[x] += self.subt[y] self.root[y] = x def size(self, x): return self.subt[self.find(x)] n, m = map(int, input().split()) uf = UF(n*2) for _ in range(m): a, b = map(lambda x: int(x)-1, input().split()) uf.union(a, b) ans = 0 for i in range(n*2): ans += (uf.find(i) == i) * (uf.size(i) % 2) print(ans // 2)