function highAndLow(numbers){
const num = numbers.split(' ')
let low = +num[0]
let high = +num[0]
for( let i of num){
if(+i <low){
low = +i
}
if(+i>high){
high = +i
}
}
return `${high} ${low}`
}