Write a program that reads two integers and displays the result of integer division and the remainder (modulus).

Input

The program should prompt for:

  1. Enter the first number:
  2. Enter the second number:

Output

The quotient is quotient
The remainder is remainder

Example

Input:

17
5

Output:

The quotient is 3
The remainder is 2