Nasty Hacks

This commit is contained in:
2022-05-13 21:29:51 +02:00
parent e4d74fae59
commit e9c199e029

15
nastyhacks.py Normal file
View File

@@ -0,0 +1,15 @@
n = int(input())
rets = []
for _ in range(n):
r, e, c = map(int, input().split(" "))
if r < e - c:
rets.append("advertise")
elif r == e - c:
rets.append("does not matter")
else:
rets.append("do not advertise")
for ret in rets:
print(ret)