# L-15.5 MCS 260 Mon 21 July 2014 : 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 = raw_input('Give file name : ')
try:
    INFILE = open(NAME, 'r')
finally:
    print 'opened \"' + NAME + '\" for reading...'

