aboutsummaryrefslogtreecommitdiffstats
path: root/test5
blob: 440f7912e8cad109822f06ca9527bb71bfee93f5 (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))
}