yearFile = open ("DATA1.txt", "r");
output = open("OUT1.txt", "w");


output.write("too young" + "\n")
output.write("old enough" + "\n")
output.write("too young" + "\n")
output.write("old enough" + "\n")
output.write("too young" + "\n")

    

yearFile.close()
output.close()
    
