Find errors in the following code fragment.
a = 3 print(a) b = 4 print(b) s = a + b print (s)
There are no errors in the above code fragment.