import fileinput
import sys

for linha in sys.stdin:
    linha = linha.replace("\n", "")
    if not linha.isdigit():
        print linha