In this program, user is asked to enter two integers (divisor and dividend) and computes the quotient and remainder.
---
- To compute quotient and remainder, both divisor and dividend should be integers.
- The division operator / is computes the quotient (either between float or integer variables).
- The modulus operator % computes the remainder when one integer is divided by another (modulus operator cannot be used for floating-type variables).