interpreter/test5

11 lines
108 B
Plaintext
Raw Normal View History

2018-03-23 07:20:18 -04:00
# test5
# solver test
while (1) {
input = gets()
if (input == "exit") {
exit
}
print(solve(input))
}