Олимпиадный тренинг

Задача 33501. Integer division and remainder


Задача

Темы: Целые числа
Write a program that, given the two numbers a and b, displays the result of integer division and the remainder in the given format (see examples)
Two numbers are input to the program: a and b
Two lines must be printed:
the first line is the result of integer division of a by b
in the second line - the remainder of dividing a by b
See the output form in the example of input and output values.

Example 
Input
15 6
Output
15//6=2
15%6=3