Module: (Python) Conditional statement


Problem

7 /17


Division of two numbers

Problem

If an integer m is divisible by an integer n, print the quotient of integer m divided by n, otherwise print the message "not completely divisible".

Input format:
Given two natural numbers, written on the same line, separated by a space.

Output format
Output the answer to the problem.
 
Example
N Input Output
1 16 2 8
2 16 3 not completely divisible