for number in range(1, 11):
	if number == 4:
	    break
	product = number * 2
	print(number, '* 2 = 2 ', product)
print('Loop completed')