import java.math.*;

class BadHash {
    public static void main(String args[]) {
        String s = "polygenelubricants";
        System.out.println("hashCode()   = " + s.hashCode());
        System.out.println("abs(...)     = " + Math.abs(s.hashCode()));
    }
}
