Hi everyone, I’m arthurtainment

q: Write a program that prompts the user to enter two integers, one per prompt. The program should then display the result of dividing the first number by the second number, using integer division so that the answer is an integer quotient, and a remainder.

Output:
Enter an integer >17
enter an integer >3
17 divided by 3 is 5 remainder 2

My code:
a = int(input('Enter an integer >')
b = int(input('Enter an integer >')
print('17 divided by 3 is', str(a//b), 'remainder', str(a%b))

When I run it, it gives the same output, but it is wrong on my quiz assignment. please advise.