import sys

def cut_length(b:str):
    for i in range(0,10):
        print(b[i],end="")

a=cut_length(input())