
Question: Fix the last line so that it outputs the sum of 1 and 2. Please do not change the first two lines, only the last one.
a = "1" b = 2 print(a + b)
Expected output:
3

Hint: str(1) converts integer 1 to string "1". What would convert string "1" to integer 1?