here gang,
dividend = int(input("Input the dividend: "))
divisor = int(input("Input the divisor: "))
quotient = int(dividend/divisor)
remainder = dividend%divisor
answer = quotient+remainder
print("The quotient + the remainder is " + str(answer))
this gave me 100%