# ==============================================================================
"""EUCLID : compute the Euclidian division of two integer numbers"""
# ==============================================================================
__author__  = "Christophe Schlick modified by Philippe Blasi"
__version__ = "1.0" # without user input
__date__    = "2022-11-12"
# ==============================================================================
a, b = 343, 125
print(a, '=', b, '*', a//b, '+', a%b)          # solution A
print("%s = %s * %s + %s" % (a, b, a//b, a%b)) # solution B (much more flexible)
print(f"{a} = {b} * {a//b} + {a%b}")           # solution C (only Python >= 3.6)
# ==============================================================================
