package marienbad;

public class Pair {

  int i, j ;

  public Pair(int i, int j) {
     this.i = i ;
     this.j = j ;
  }

}