so it has asked me to write a program which asks the user for two numbers. The program will then print out the sum and the product of the two numbers.
The program should function as follows:
Number 1: 3
Number 2: 7
The sum of the numbers: 10
The product of the numbers: 21
and then i wrote the code as
number2 = int(input("Number 2:"))
addition = (number1 + number2)
product = (number1 * number2)
print(f"The sum of the numbers:{addition}")
print(F"The product of the numbers:{product}") ```
i got the result correctly and exactly but it is showing this error