diff --git a/simon.py b/simon.py new file mode 100644 index 0000000..c4670c3 --- /dev/null +++ b/simon.py @@ -0,0 +1,7 @@ +t = int(input()) +for _ in range(t): + s = input() + if s[:10] == 'simon says': + print(s[11:]) + else: + print()