Help a PhD candidate out!

This commit is contained in:
2023-07-25 10:09:41 +02:00
parent 3963a3498a
commit 30941abe2d

6
helpaphd.py Normal file
View File

@@ -0,0 +1,6 @@
for _ in range(int(input())):
testcase = input()
if testcase == "P=NP":
print("skipped")
else:
print(sum(map(int, testcase.split("+"))))