728x90
반응형

단순 사칙연산 문제이다.

for _ in range(int(input())):
    r, e, c = map(int, input().split())
    if r == e-c:
        print("does not matter")
    elif r < e-c:
        print("advertise")
    else:
        print("do not advertise")
728x90
반응형

+ Recent posts