Run
x = 17 y = 5 quotient, remainder = divmod(x, y) print(f'Quotient : {quotient}') print(f'Remainder : {remainder}')
Output