public class IntPair { public int first, second; public IntPair( int a, int b ) { first = a; second = b; } }