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

[백준/파이썬] 8678번 Zbiór

by 현장 2024. 9. 3.

-Code

from sys import stdin

for _ in range(int(stdin.readline())):
    a, b = map(int, stdin.readline().split())

    print("TAK" if b % a == 0 else "NIE")