Advertisement
Tariqul_Islam

The World of Numbers

Aug 7th, 2020
958
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.10 KB | None | 0 0
  1. #!/bin/bash
  2. read a
  3. read b
  4. echo $(($a + $b))
  5. echo $(($a - $b))
  6. echo $(($a * $b))
  7. echo $(($a / $b))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement