RosettaCodeData/Task/A+B/Perl-6/a+b-3.pl6
2016-12-05 22:15:40 +01:00

2 lines
48 B
Raku

my ($a, $b) = $*IN.get.split(" ");
say $a + $b;