Write instructions to the Interactive mode for the following:
(a) To display sum of 3, 8.0, 6 * 12
(b) To print sum of 16, 5.0, 44.0
(a)
>>> 3 + 8.0 + 6 * 12
(b)
>>> print(16 + 5.0 + 44.0)