Crea una funzione che somma due argomenti. Se viene fornito un solo argomento, restituisci una funzione che si aspetta un argomento e restituisce la somma.
Ad esempio, `addTogether(2, 3)` dovrebbe restituire `5`e `addTogether(2)` dovrebbe restituire una funzione.
Chiamando questa funzione restituita con un singolo argomento essa restituirà la somma:
```js
var sumTwoAnd = addTogether(2);
```
`sumTwoAnd(3)` restituisce `5`.
Se uno dei due argomenti non è un numero valido, restituisce undefined.