import java.util.*; import java.io.*; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] first = br.readLine().split(" ", 2); int h = Integer.parseInt(first[0]); int w = Integer.parseInt(first[1]); boolean[][] field = new boolean[h + 2][w + 2]; for (int i = 1; i <= h; i++) { String[] line = br.readLine().split(" ", w); for (int j = 1; j <= w; j++) { field[i][j] = (line[j - 1].charAt(0) == '1'); } } ArrayDeque deq = new ArrayDeque<>(); int count = 0; for (int i = 1; i <= h; i++) { for (int j = 1; j <= w; j++) { if (field[i][j]) { count++; deq.add(i * (w + 2) + j); while (deq.size() > 0) { int x = deq.poll(); int xh = x / (w + 2); int xw = x % (w + 2); if (!field[xh][xw]) { continue; } field[xh][xw] = false; if (field[xh][xw + 1]) { deq.add(xh * (w + 2) + xw + 1); } if (field[xh][xw - 1]) { deq.add(xh * (w + 2) + xw - 1); } if (field[xh + 1][xw]) { deq.add((xh + 1) * (w + 2) + xw); } if (field[xh - 1][xw]) { deq.add((xh - 1) * (w + 2) + xw); } } } } } System.out.println(count); } }