package example1.mr; public class Counter { public final String key; public int count = 0; public Counter(String key) { this.key = key; } }