Dividing Mania

3

1 votes
Problem

Given two integers A and B. Find out the quotient and remainder when B is divided by B.

The output must be printed in the following sequence-

Quotient Remainder

Time Limit: 1
Memory Limit: 256
Source Limit:
Explanation

17 / 3 gives quotient = 5 and remainder = 3.

NOTE: Print quotient followed by remained.

Editor Image

?