x=-4443
y=554.21
c='M'
print "The value of integer variable x is" , x
print "The value of float variable y is " , y
print "The value of character variable c is " , c
x = 20
PI = 3.14
print "Constant values are ",x ," and ", round(PI,2)
print "\t Adder Program, by Michael Vine"
iOperand1=int(raw_input("Enter First Operand: "))
iOperand2=int(raw_input("Enter Second Operand: "))
print "The final result is ", iOperand1+iOperand2
print "\t Adder Program, by Michael Vine"
iOperand1=int(raw_input("Enter First Operand: "))
iOperand2=int(raw_input("Enter Second Operand: "))
iResult=iOperand1+iOperand2
print "The result is ", iResult
fRevenue=float(raw_input("Enter total revenue: "))
fCost=float(raw_input("Enter total cost: "))
print "Your total profit is ", round(fRevenue-fCost,3)