Tester.py
a = -9 b = -9*3 c = -9*2+1 print("{0}, {1}".format(a, c)) print("{1}, {0}".format(c, b))
What is the output?
Be careful of the whitespace(space,newline) in your answer.