Question: How can I release root of equation

underline is a simple procedure:
> s := solve({5*A+3*B = 5, 8*A-9*B = 94}, [A, B]);
s := [[A = 109/23, B = -430/69]]
> assign(s);
> A; B;
109/23
-430/69

But, now what I want to use is not 109/23 or -430/69, but A or B.
That is to say, firstly, I need use root of equation, so Execute Command
> assign(s);
> A; B;
then, I can apply 109/23 or -430/69. Then later on, I want to use A or B, which now are viewed asariable? Now how can I do?

Please Wait...