python-algorithm

[백준] 11094

무적김두칠 2021. 1. 13. 10:15

1
2
3
for _ in range(int(input())):
    tmp=list(input().split())
    if tmp[0]=='Simon' and tmp[1]=='says' : print("",*tmp[2:])
cs
반응형