Given an IP address and mask like 192.168.10.30/24 on STDIN, return the matching range of addresses.
i.e. input : 192.168.10.30/24 output: 192.168.10.0-192.168.10.255
input : 127.0.0.0/31 output: 127.0.0.0-127.0.0.1
libraries/packages/... are NOT allowed