@PythonDvz Answer: D) Error
Python sees "6" and 3 as different types and won't add them.
It doesn't know if you want 9 or "63", so it refuses.
For beginners: explicit beats implicit.
> int(a) + 3 = 9
> a + str(3) = "63"
You tell Python what you need.