#This function will print the students name
def printname():
    print('Abigail Amoah');
    return;

#This function will print the schools address
def printaddress():
    print('10001 Ardwick Ardmore Road');
    print('Springdale, MD 20774');
    print;
    print;
    print;
    return;
 

#This function will print my homework
def printwork():
    print('My parents will need to sign this');
    print;
    return;

#This function will print the number of notes
def printnotes():
#Assign a value to the notes variable    
    notespost = 9
    programpost = 13
    print"I have", notespost ,"posts for notes";
    print;
    print"I have", programpost ,"posts for programs";
    print;
    return;

#This function will print the parents name
def printparentname():
#Assign a value to the parent name
    parentname = "Abena Amoah"
    print"My parent", parentname ,"has viewed all of notes and programs";
    print;
    print("My parents signature is below");
    print;
    print;
    print("_____________________________");
    print parentname;
  
    return();


printname()
printaddress()
printwork()
printnotes()
printparentname()
 



