write a program to input two elements and then find the sumation and multiplication of these two numbers
Answers
Answered by
1
Answer:
n1=int(input("Enter the first number:"))
n2=int(input("Enter the second number:"))
s=n1+n2
m=n1*n2
print("The summation is",s)
print("The multiplication",m)
output:
Enter the first number:1
Enter the second number:2
The summation is 3
The multiplication 2
Similar questions