!752 static BigInteger points; p { load("points"); } answer { if (match("plus one", s) || match("good", s) || match("nice", s) || match("nice one", s) || match("gut", s) || match("jawohl", s)) { plusPoint(); ret "OK"; } if (match("how many points you got", s) || match("wie viele punkte", s)) ret str(points); } static void plusPoint() { points = points.add(bigint(1)); log("+1"); save("points"); } static void log(S s) { print(s); }