Computer Science, asked by satyammandavi6, 13 hours ago

write a program to read num1 and num2 and store there sum in num3 and their final product in num4​

Answers

Answered by singhshobha351
4

Answer:

num1=10

num2=20

num3=(num1+num2)

print(num3)

num4=(num1*num2)

print(num4)

Explanation:

other type,

num1=int(input('Enter the first number')

num2=int(input('Enter the second number')

num3=(num1+num2)

print(num3)

num4=(num1*num2)

print(num4)

Similar questions