"Source: Text/Group/GrpFPInt.text";
"Line: 1894";
"Date: Thu Sep 25 14:47:45 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Group/GrpFPInt.text, line: 1894
// Example: H79E23 ()
print "Example: H79E23";
ei := GetEchoInput();
SetEchoInput(true);
G<a, b> := FPGroup<a, b | a^8, b^7, (a*b)^2, (a*b^-1)^3>;
CG := CayleyGraph(G);
Diameter(CG);
V := Vertices(CG);
E := Edges(CG);
g := Geodesic(V!1, V!1000);
g;
w := &*[ Label(E![g[i], g[i+1]]) : i in [1.. #g-1] ];
w;
SetEchoInput(ei);
