Find out the error(s) in the following code fragment:
a = 30 b = a + b print (a And b)
There are two errors in this code fragment:
In the statement b = a+b, variable b is undefined.
b = a+b
b
In the statement print(a And b), And should be written as and.
print(a And b)
And
and