4 lines
62 B
Bash
4 lines
62 B
Bash
|
#!/bin/bash
|
||
|
PROD=$(expr $1 \* $2)
|
||
|
echo "Producto $1*$2=$PROD"
|