num = 13
output = ""

while num != 0:
    temp = num // 2
    output = str(num % 2) + output
    num = temp

print(output)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: