Answer:
dividend = float(input("Input the dividend: "))
divisor = float(input("Input the divisor: "))
quotient = dividend / divisor
remainder = dividend % divisor
print("The quotient + the remainder is %.1f" % (quotient + remainder))
Step-by-step explanation: