Computer Science, asked by adarshrajoriya99, 6 months ago

Write a python code which takes two

numbers and prints their Quotient and

remainder.​

Answers

Answered by Anonymous
2

Explanation:

a=int(input("Enter the first number: "))

b=int(input("Enter the second number: "))

quotient=a//b

remainder=a%b

print("Quotient is:",quotient)

print("Remainder is:",remainder)

Similar questions