<div>okay so this is my comp sci lab</div>
<div> </div>
<div><b><font size="3">
<p>Problem: </p></font></b><font face="Calibri,Calibri" size="3"><font face="Calibri,Calibri" size="3">ProductionTime.py It takes exactly 2 minutes and 7 second to produce an item. Unfortunately, after 143 items are produced, the fabricator must cool off for 5 minutes and 13 seconds before it can continue. Write a program that will calculate the amount of time required to manufacture a given number of items. </font></font><b><font size="3">
<p>Output: </p></font></b><font face="Calibri,Calibri" size="3"><font face="Calibri,Calibri" size="3">Output the amount of time D days HH:MM:SS </font></font><b><font size="3">
<p>Sample Input : </p></font></b><font face="Calibri,Calibri" size="3"><font face="Calibri,Calibri" size="3">
<p>numItems =1340 Represents the numbers items to be manufactured </p></font></font><b><font size="3">
<p>Sample Output : </p></font></b><font face="Calibri,Calibri" size="3"><font face="Calibri,Calibri" size="3">
<p>2 days 00:03:17 </p>
<p> </p>
<p>this is the coding i have written for it!</p>
<p>numitems= int(raw_input(&quot;Enter the number of items needed to be manufactured:&quot;))<br>seconds=numitems*127<br>m, s = divmod(seconds, 60)<br>h, m = divmod(m, 60)<br>print &quot;%d:%02d:%02d&quot; % (h, m, s)</p>

<p>but how would i add the 5 min and 13 seconds after 143 items have been produced???</p></font></font></div>