''' Purpose: demonstrate string operators ''' # name some values n = 5 s = 'strengths' t = 'crwth' u = 'unnoticeably' print( s + t ) print( n * u )