cnt = gets.to_i
i = 0
while i < cnt
	puts gets.to_i*gets.to_i
	puts "\n"
	i++
end