Duck tape
Hello. I am getting error on test #5, what is wrong with my code? Thank you very much. height_door=int(input()) weight_door=int(input()) door=height_door*weight_door*2 duc1=60/12 duc2=2 duck=duc1*duc2 print(round(door/duck)) You want to completely cover a flat door on both sides with duct tape. You need to know how many rolls of duct tape to buy when you go to the store. Task: Given the height and width of the door, determine how many rolls of duct tape you will need (a roll of duct tape is 60 feet long and 2 inches wide and there are 12 inches in each foot). Don't forget both sides of the door! Input Format: Two integers that represent the height and width of the door. Output Format: An integer that represents the total rolls of duct tape that you need to buy. Sample Input: 7 4 Sample Output: 6