write up ctf by ariafatah
What is 0x3D (base 16) in decimal (base 10)?
0x3D => 0011 1101 00111110 => 32 + 16 + 8 + 4 + 1 => 61
ipython3 int("0x3D", 16) Out[1]: 61
picoCTF{61}