aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test5
blob: 74ce439a2bcadd62efc83cfaf621cf6410a8cfb5 (plain)
1
2
3
4
5
6
7
8
9
10
# test5
# solver test

while (1) {
	input = gets
	if (input == "exit") {
		exit
	}
	print(solve(input))
}