122,207 views
34 votes
34 votes
Write a code snippet Now write your own code snippet that asks the user to enter two numbers of integer type (one at a time) and prints their sum. >>>your code starts here HTML Editor B

User Chase R Lewis
by
2.5k points

1 Answer

8 votes
8 votes

Step-by-step explanation:

num1= print("Enter a number :")

num2 = print("Enter a number :")

sum = num1 + num2

print(sum)

User Dave Voyles
by
2.9k points