Second half of the given string

 Second half of the given string


    s=input()

    l=int(len(s)/2)

    print(s[-l:])

Comments