Write a Python function named calculate_results that takes a list of integers and performs two operations concurrently: calculating the sum and the product of the integers. The function should use asyncio and futures to perform these operations concurrently.
You must use the
asyncio library and Futures to perform concurrent operations. A solution using regular synchronous Python code will not be considered correct.