Computer Science, asked by sagnikghosh2100, 20 days ago

Write a program to input any two numbers and print their sum, and product by leaving two lines in between

Answers

Answered by quazi1996saad
2

Answer:

a=input ('enter first number')

b=input ('enter second number')

print(int(a) +int (b))

print( int (a) *int (b))

python lang,,, you can convet it into different language

Similar questions