interpreter/tests/test5

11 lines
106 B
Plaintext

# test5
# solver test
while (1) {
input = gets
if (input == "exit") {
exit
}
print(solve(input))
}