def one_space(a):
    a =" "

def 5_spaces(b):
    b = "     "

def 10_spaces(c):
    c =  "          "

def joe (j):
    j = "Joe sent me"

print a + b + c + j
