Computer Science, asked by Aryandewangan24, 1 day ago

Wate a program that will accept two integers from the user and print their sum product on the screen.​

Answers

Answered by cyxl
0

This is how to do it in Python:

# Asking for the numbers

firstNumber = input('What is the first number? ')

secondNumber = input('What is the second number?' )

# Printing the sum

print(firstNumber + secondNumber)

Similar questions