Points: 50
General Skills
Can you convert the number 27 (base 10) to binary (base 2)?
Submit your answer in our competition's flag format. For example, if you answer was '11111', you would submit 'picoCTF{11111}' as the flag.
We can use Python to convert an integer to a binary number.
>>> bin(27)[2:]
'11011'
picoCTF{11011}