m, n = map(int, input().split())
if m % n == 0:
print(m // n)
else:
print("not completely divisible")
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
m, n = map(int, input().split())
if m % n == 0:
print(m // n)
else:
print("not completely divisible")