import sys

for line in sys.stdin:
    line = line.strip()
    dl = len(line)
    print("{} {}".format(dl, line))