Write a function that takes a byte, and prints it in binary WITHOUT A NEWLINE AT THE END.
The function must have the next signature.
func PrintBits(octe byte) { }
Example, if you pass 2 to PrintBits, it will print "00000010"