Search

37. 백준_Python [5063] TGN

count = int(input()) for _ in range(count): r, e, c = map(int, input().split()) if r < e - c: print("advertise") elif r == e - c: print("does not matter") else: print("do not advertise")
Python
복사