import random
output_file = open("OUT5.txt", "w")
anser = 0
full_anser = ""
for a in range(0,5):
    anser = ""
    for b in range(0,3):
        number = random.randint(1,20)
        anser = str(number)
    full_anser = full_anser + anser + "\n"
output_file.write(full_anser)
output_file.close()

