Scenаriо. A prоgrаm reаds numbers frоm a file (one per line) and prints their sum. Assume numbers.txt contains:51015Number of bugs to fix: 2 total = 0 with open("numbers.txt", "r") as file: lines = file.read() for line in lines: total = total + int(line) print("Total:", line) Expected output:Total: 30