
package name.panitz.data.list;
public class Paar<a,b>{
  public a fst;
  public b snd;
  public Paar(a f,b s){fst=f;snd=s;}
}

