5 lines
70 B
Bash
5 lines
70 B
Bash
|
|
set line=$<
|
||
|
|
set input=($line)
|
||
|
|
@ sum = $input[1] + $input[2]
|
||
|
|
echo $sum
|