j = raw_input ("enter your name")


def right_justify (result):
    c =  "          "
    print (c* 7) + j

right_justify (result)
