def adjacent_num_product(list_nums): return max(a*b for a, b in zip(list_nums, list_nums[1:]))