# Read two floats and print their sum and product
# MCS 260 Fall 2020 Lecture 3 - Emily Dumas
x = float(input("First number: "))
y = float(input("Second number: "))
print("Sum:    ",x,"+",y,"=",x+y)
print("Product:",x,"*",y,"=",x*y)
