write a program to prints the first half of the given string

 write a program to prints the first half of  the given string.

    

    x=input()

    l=int(len(x)/2)

    print(x[:l])

Comments