import java.io.PrintWriter;

public class Hash
{
  public static void main(String[] args)
  {
    PrintWriter pen = new PrintWriter(System.out, true);
    for (int i = 0; i < args.length; i++) {
      pen.println("The hash value for " + args[i] + " is "
        + args[i].hashCode());
      pen.println("  I'll put that in location " + (Math.abs(args[i].hashCode()) % 100));
    } // for
  } // main
} // class Hash

