import java.io.*;

public class Person
implements Serializable
{
  public String name;
  public Person mother;
  public Person father;

  public Person(String name)
  {
    this.name = name;
  }
}