prog3_10.py

x = 11
y = 4
quotient = x // y
remainder = x % y
print(x, "÷", y, "=", quotient, "あまり", remainder)

# プログラム3-10(割り算の商と余り)