# L-3 MCS 507 Fri 26 Aug 2011 : hellothere.py
print 'Welcome to our interactive Python script!'
name = raw_input('who is there ? ')
print 'How are you, ' + name + '?'
x = input('type some number : ')
t = type(x)
print '-> your number', x , ':', t
