aboutsummaryrefslogtreecommitdiffstats
path: root/test5
diff options
context:
space:
mode:
Diffstat (limited to 'test5')
-rw-r--r--test510
1 files changed, 10 insertions, 0 deletions
diff --git a/test5 b/test5
new file mode 100644
index 0000000..440f791
--- /dev/null
+++ b/test5
@@ -0,0 +1,10 @@
+# test5
+# solver test
+
+while (1) {
+ input = gets()
+ if (input == "exit") {
+ exit
+ }
+ print(solve(input))
+}