You are viewing a single comment's thread. Return to all comments →
#!/bin/bash read n1 read n2 echo $[n1 + n2] echo $[n1 - n2] echo $[n1 * n2] echo $[n1 / n2]
The World of Numbers
You are viewing a single comment's thread. Return to all comments →