Question 2: What will be the result of the following Python code? first_number = '45' second_number = '3' total_number = first_number + second_number print(total_number) Choice: (choose correct answer): () 453 () 48 () TypeError () 45 3 () None Answer: 453