aboutsummaryrefslogtreecommitdiff
path: root/test/data/target.py
blob: 1583597b37afead93ea124eb7e9b895deff14670 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from sys import stdout

if __name__ == "__main__":

    while True:
        line = input()
        char = line[0]
        content = line[1:]
        if char == "d":
            for c in "r01020304":
                stdout.write(c)
            stdout.write("\n")
            for c in "z00":
                stdout.write(c)
            stdout.write("\n")
        elif char == "x":
            break