class KeyValPair { String key; int val; KeyValPair(String k, int v) { key = k; val = v; } }