Simon Says

This commit is contained in:
2023-07-03 22:46:33 +02:00
parent 4a4158fa23
commit 9ee48aa678

7
simon.py Normal file
View File

@@ -0,0 +1,7 @@
t = int(input())
for _ in range(t):
s = input()
if s[:10] == 'simon says':
print(s[11:])
else:
print()