'''
Created on Oct 6, 2016

@author: Susan
'''
def mystery(strng): 
    count = 0 
    result = '' 
    while count < 5: 
        result += strng[count] + strng[count] 
        count += 1 
    result += strng[count:] 
    return result 
 


if __name__ == '__main__':
    print "output from Mystery function" 
    print mystery("September") 