n = 100000
for i in range (n):
	print ('insert', i * 2 + 1)
for i in range (n):
	print ('find', i)
