Question 9
Consider two python files, mad1.py and mad2.py with following code snippets.
File1: mad1.py
import sysimport mad2print('Welcome' + ' ' + sys.argv[1])File2: mad2.py
import sysprint('Welcome' + ' ' + sys.argv[0])What is the output of the following command “python mad1.py mad2.py MAD-I MAD-II”?