<u>Answer:</u>
<em>feetFab1 = int(input(""Enter the value in feet for the 1st piece of fabric: ""))</em>
<em>inchFab1 = int(input(""Enter the value in inches for the 1st piece of fabric: ""))</em>
<em />
<em>feetFab2 = int(input(""Enter the value in feet for the 2nd piece of fabric: ""))</em>
<em>inchFab2 = int(input(""Enter the value in inches for the 2nd piece of fabric: ""))</em>
<em />
<em>feetSum = (feetFab1 + feetFab2)</em>
<em>inchSum = (inchFab1 + inchFab2)</em>
<em />
<em>totalFeet = ((inchSum % 12) + feetSum)</em>
<em>totalInch = (feetSum % 12)</em>
<em>print (""Feet: "" + str(totalFeet) + "". Inches: "" + str(totalInch))</em>