input = open('DATA1.txt', 'r')
output = open('OUT1.txt', 'w')
for x in range(5):
	output.writelines('valid\n')
output.close()


