import sys, re for l in sys.stdin: print(' '.join([x[0]+' '+(x[1] or '1') for x in re.findall('([A-Z][a-z]?)(\d*)',l)]))