The World of Numbers

  • + 0 comments
    #!/bin/bash
    
    read n1
    read n2
    
    echo $[n1 + n2]
    echo $[n1 - n2]
    echo $[n1 * n2]
    echo $[n1 / n2]