Write a program to read two numbers, print their sun and product.
7 Write a program to read name, marki and mark Calculated
Answers
Answered by
0
#Python program to read two numbers
a=eval(input("Enter the value::"))
b=eval(input("Enter the value::"))
sum=a+b
product=a*b
print("sum of", a, "and", b, "is::" ,sum)
print("product of", a, "and" , b ,"is::" ,product)
Similar questions