https://zerojudge.tw/ShowProblem?problemid=a221
https://onlinejudge.org/index.php?option=onlinejudge&Itemid=8&page=show_problem&problem=2834
X
很直白的用判斷式照著寫就可以了,特別注意空格我用 replace 去轉換,將字組合在一起
n = int(input())
for i in range(n):
teamans = input()
judgesans = input()
if teamans == judgesans:
result = "Yes"
elif teamans.replace(" ","") == judgesans or judgesans.replace(" ","") == teamans:
result = "Output Format Error"
else:
result = "Wrong Answer"
print("Case ", i+1, ": ", result, sep = '')