iNo = raw_input("Specify Quantity: ")
print iNo
iNo = raw_input("Specify Quantity: ")
print "You entered", iNo
iNo = raw_input("specify quantity: ")
dPrice = raw_input("Specify unit Price: ")
print "You entered the quantity ", iNo , " and the price " , dPrice
dTaxPerc = 25.0
iNo = int(raw_input("Specify Quantity: "))
dUnitPr = float(raw_input("Specify Unit Price: "))
dPriceExTax = dUnitPr * iNo
dTax = dPriceExTax * dTaxPerc / 100
dCustPrice = dPriceExTax + dTax
print "INVOICE"
print "========"
print "Quantity: ", iNo
print "Price per Unit: ", dUnitPr
print "Total Price: ", dCustPrice
print "Tax: ",dTax
iNoOfSec = int(raw_input("Speicfy No. of Seconds: "))
iNoOfMin = iNoOfSec / 60
iSecLeft = iNoOfSec % 60
iNoOfHours = iNoOfMin / 60
iMinLeft = iNoOfMin % 60
print "Number of hours = ", iNoOfHours
print "Number of Minutes = ", iNoOfMin
print "Number of Seconds = ", iSecLeft
import random
iNo = 5
iRoll1 = random.randint(0,100) % 6 + 1
iRoll2 = random.randint(0,100) % 6 + 1
iRoll3 = random.randint(0,100) % 6 + 1
iRoll4 = random.randint(0,100) % 6 + 1
iRoll5 = random.randint(0,100) % 6 + 1
dAverage = float(iRoll1 + iRoll2 + iRoll3 + iRoll4 + iRoll5) / iNo;
print "Number of Rolls: ", iNo
print "Average Score: ", dAverage