first=["fuck", "you", "bitch"]
second=["love", "my", "live"]
third = ["sex","drugs","rock"]
list=[]
i=0
x=0
y=0
j=0
for a in third:
	for a in second:
		for a in first:
			list.insert(i, first[x]+second[y]+third[j])
			i=i+1
			x=1+1
		if i> len(first) -1:
			x=0
			y=y+1
		elif len(list)>8:
			y=0
			j=j+1
print(list)