본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 9297번 Reducing Improper Fractions

by 현장 2024. 12. 14.

-Code

for i in range(1, int(input()) + 1):
    n, d = map(int, input().split())

    if n % d == 0:
        print(f"Case {i}: {n // d}")
    elif n // d == 0:
        print(f"Case {i}: {n % d}/{d}")
    else:
        print(f"Case {i}: {n // d} {n % d}/{d}")