def right_justify(s):
    spaces = ' ' * (70-len(s))
    return print(spaces + s)

right_justify('allen')