6 lines
133 B
Python
6 lines
133 B
Python
n, d = map(int, input().split())
|
|
|
|
while not (n == d == 0):
|
|
print(f"{n // d} {n % d} / {d}")
|
|
n, d = map(int, input().split())
|