print "Hello world"
Hello world
dblPrice = float(raw_input("Enter Price Per Unit : ")) iNo = int(raw_input("Enter Quantity : ")) dblTotal = dblPrice * iNo print "The Total Price Is : %d" % dblTotal
Enter Price Per Unit : 100 Enter Quantity : 10 The Total Price Is : 1000