I think:
<span> C) Regularly check Publisher's 'Rejected' Tab <span>D) Enable email notifications for failed messages under Preferences</span></span>
But I am not sure.
Try to say something yourself, but if you are too scared, get an adult involved. The one bad thing you could do is ignore it.
Answer:
See explaination for program code.
Explanation:
inputFileName = input("Input filename: ") outputFileName = input("Output filename: ") inputFile = open(inputFileName, "r") outputFile = open(outputFileName, "w") count = 1 for line in inputFile: newLine = str(count).rjust(4, " ") + "> " + line outputFile.write(newLine) print(newLine) count += 1