function convertToBinary(num) {
    return Number(num).toString(2).padStart(8, '0')
}