We're a place where coders share, stay up-to-date and grow their careers.
Raku:
sub fit-in($a, $b, $m, $n) { $a + $b <= max($m, $n) }
Raku: