interpreter/test5
2018-03-23 07:20:18 -04:00

11 lines
108 B
Plaintext

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