Write a python code which takes two
numbers and prints their Quotient and
remainder.
Answers
Answered by
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