What does this code print?long c = Stream.of("a","b","c").filter(s -> s.equals("b")).count();\nSystem.out.println(c);