Question: Removing the * symbol in printf

Hi The code below prints out (x-1)*(x-2) with an asterisk for the multiplication symbol. I would like it to print out z without this sign. Any ideas please on how to do this. Maple input restart: interface(prettyprint=3): printlevel:=1: a:=1:b:=-3:c:=2: y:=a*x^2+b*x+c: z:=factor(y); printf("%A\n",z); Maple output z := (x - 1) (x - 2) (x-1)*(x-2)
Please Wait...