# L-28 MCS 260 Wed 16 Mar 2016 : readfilename1.py

"""
Prompts the user for a file name and displays
a message to confirm the name given on input.
With finally, the exception is still thrown.
"""

NAME = input('Give file name : ')
try:
    INFILE = open(NAME, 'r')
finally:
    print('opened \"' + NAME + '\" for reading...')

