This is a Python Program to read two numbers and print their quotient and remainder.
The program takes two numbers and prints the quotient and remainder.
1. Take in the first and second number and store it in separate variables.
2. Then obtain the quotient using division and the remainder using modulus operator.
3. Exit.
Here is the source code of the Python Program to read two numbers and print their quotient and remainder. The program output is also shown below.
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)
1. User must enter the first and second number .
2. The quotient is obtained using true division (// operator).
3. The modulus operator gives the remainder when a is divided by b.
Case 1: Enter the first number: 15 Enter the second number: 7 Quotient is: 2 Remainder is: 1 Case 2: Enter the first number: 125 Enter the second number: 7 Quotient is: 17 Remainder is: 6
Sanfoundry Global Education & Learning Series – 1000 Python Programs.
If you wish to look at all Python Programming examples, go to 1000 Python Programs.
- Apply for Programming Internship
- Check Python Books
- Apply for Python Internship
- Check Information Technology Books
- Practice Programming MCQs