First, download the convert.py file. Run it with the folllowing command.
python3 convert.py
You are prompted with the following text.
If 15 is in decimal base, what is it in binary base?
Every decimal number has a representation in a binary form. For example, take the number 3, which is in the decimal format. In the binary form it is equal to β11β.
If you want to learn about this, I recommend look at the table below.
python3
print(bin(15)[2:])
The program above converts the decimal number β15β to itβs binary representation. Enter that value as an answer to the convert.py file.
Nice, youβve got the flag!
Subscribe to our email newsletter and unlock access to members-only content and exclusive updates.
Comments