infile = open("DATA4.txt")
outfile = open("OUT4.txt", "w")
for n in infile:
    outfile.write("-1 \n")


