First time here? Check out the FAQ!
answered 2013-08-04 21:46:20 +0100
You can just use strings. Nothing fancy just printing out exactly what you want.
sage: a = 2 sage: b = 3 sage: print str(a)+"+"+str(b) "2+3"