1 2 3 4 5 6 7
#!/bin/env raku unit sub MAIN(Str:D $x, Str:D $y); my @x = $x.comb(/\d+/); my @y = $y.comb(/\d+/); put (@y.sum - @x.sum) / +@x;