(Choose 1 answer)
In the following code (numbers added) - which will be the last line to execute successfully?
(1) astr = 'Hello Bob'
(2) istr = int(astr)
(3) print('First', istr)(4) astr = '123'
(5) istr = int(astr)
(6) print('Second', istr)
A. 2
B. 1
C. 6
D. 3