write a program to take 2 integer input from the user and print the sum and product of it
Answers
Answered by
1
Answer:
yhi jaan le sbb khud se le thoda
Answered by
0
Answer:
Python program :
a = int(input('Enter first number'))
b = int(input('Entet second number'))
sum = a+b
product = a*b
print(sum)
print(product)
Hope it helps
Kindly Mark as Brainliest
Similar questions