Answer:
yards = int(input("Enter the Yards: "))
feet = int(input("Enter the Feet: "))
yards2 = int(input("Enter the Yards: "))
feet2 = int(input("Enter the Feet: "))
totalYards = yards + yards2
totalFeet = feet + feet2
if totalFeet >= 3:
totalYards += 1
totalFeet -= 3
print("Yards:", totalYards, "Feet:", totalFeet)
else:
print("Yards:", totalYards, "Feet:", totalFeet)