a = 2
b = 3
c = 5
Print["a+b=", a + b]
Print["ab=", a b]
Print["a-c=", a - c]
The above code invokes the Print[] function line by line, yielding three distinct lines of output.

My desired output format is a single line display, as shown below:
{a + b = 5, ab = 6, a - c = -3}
I've tried implementing the following code on my own, but it doesn't produce the desired result. What's the correct approach to this?
{Print["a+b=", a + b], Print["ab=", a b], Print["a-c=", a - c]}