interpreter/test5
2018-03-29 13:36:29 -04:00

11 lines
106 B
Plaintext

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