This round features Picat, a language somewhat similar to Prolog. We tried to make most of our problems convenient to solve using declarative approach.
The traditional A+B program (A and B are space-separated) looks as follows:
main =>
A = read_int(),
B = read_int(),
C = A + B,
println(C).
The main source of information about language is http://picat-lang.org/ The contest uses version 0.9.