Write a pseudocode which will accept two integers from the user and calculate the sum and product. Then display the answer to the user.

Write Pseudo-code for Summing consecutive integers

read m,n

sum = m+n
product = m*n
print sum,product

math

Sure! Here's a pseudocode that meets your requirements:

1. Start
2. Declare integer variables num1, num2, sum, product
3. Accept input for num1 from the user
4. Accept input for num2 from the user
5. Calculate the sum of num1 and num2, and store it in the sum variable
6. Calculate the product of num1 and num2, and store it in the product variable
7. Display the sum to the user
8. Display the product to the user
9. End

To implement this pseudocode in a programming language, you can follow these steps:

1. In Python, create a new script file and start with the "main" function.
2. Declare and initialize two integer variables, num1 and num2, to store user inputs.
3. Use the input function to accept user input and assign it to the num1 variable.
4. Repeat step 3 for the num2 variable.
5. Calculate the sum of num1 and num2 by adding them together and store it in the sum variable.
6. Calculate the product of num1 and num2 by multiplying them together and store it in the product variable.
7. Use the print function to display the sum and product to the user.
8. End the script.

Here's the Python code that corresponds to the pseudocode:

```python
def main():
num1 = int(input("Enter the first number: "))
num2 = int(input("Enter the second number: "))

sum = num1 + num2
product = num1 * num2

print("Sum:", sum)
print("Product:", product)

# Call the main function to run the code
main()
```

You can run this code and test it by entering two integers when prompted.